HomeSort by relevance Sort by last modified time
    Searched refs:startNode (Results 1 - 25 of 40) sorted by null

1 2

  /external/webkit/Source/WebCore/editing/
BreakBlockquoteCommand.cpp 105 // startNode is the first node that we need to move to the new blockquote.
106 Node* startNode = pos.deprecatedNode();
109 if (startNode->isTextNode()) {
110 Text* textNode = static_cast<Text*>(startNode);
112 startNode = startNode->traverseNextNode();
113 ASSERT(startNode);
117 Node* childAtOffset = startNode->childNode(pos.deprecatedEditingOffset());
118 startNode = childAtOffset ? childAtOffset : startNode->traverseNextNode()
    [all...]
ModifySelectionListLevel.h 40 void appendSiblingNodeRange(Node* startNode, Node* endNode, Element* newParent);
41 void insertSiblingNodeRangeBefore(Node* startNode, Node* endNode, Node* refNode);
42 void insertSiblingNodeRangeAfter(Node* startNode, Node* endNode, Node* refNode);
DeleteSelectionCommand.cpp 433 Node* startNode = m_upstreamStart.deprecatedNode();
436 if (startNode == m_startBlock && startOffset == 0 && canHaveChildrenForEditing(startNode) && !startNode->hasTagName(tableTag)) {
438 startNode = startNode->traverseNextNode();
441 if (startOffset >= caretMaxOffset(startNode) && startNode->isTextNode()) {
442 Text *text = static_cast<Text *>(startNode);
443 if (text->length() > (unsigned)caretMaxOffset(startNode))
    [all...]
ApplyStyleCommand.cpp 346 Node* startNode = start.deprecatedNode();
347 if (startNode->isTextNode() && start.deprecatedEditingOffset() >= caretMaxOffset(startNode)) // Move out of text node if range does not include its characters.
348 startNode = startNode->traverseNextNode();
353 for (Node *node = startNode; node != beyondEnd; node = node->traverseNextNode())
360 for (Node* node = startNode; node != beyondEnd; node = node->traverseNextNode()) {
518 static Node* highestEmbeddingAncestor(Node* startNode, Node* enclosingNode)
520 for (Node* n = startNode; n && n != enclosingNode; n = n->parentNode()) {
661 Node* startNode = start.deprecatedNode()
    [all...]
FormatBlockCommand.cpp 40 static Node* enclosingBlockToSplitTreeTo(Node* startNode);
147 Node* enclosingBlockToSplitTreeTo(Node* startNode)
149 Node* lastBlock = startNode;
150 for (Node* n = startNode; n; n = n->parentNode()) {
ModifySelectionListLevel.cpp 91 void ModifySelectionListLevelCommand::insertSiblingNodeRangeBefore(Node* startNode, Node* endNode, Node* refNode)
93 Node* node = startNode;
106 void ModifySelectionListLevelCommand::insertSiblingNodeRangeAfter(Node* startNode, Node* endNode, Node* refNode)
108 Node* node = startNode;
122 void ModifySelectionListLevelCommand::appendSiblingNodeRange(Node* startNode, Node* endNode, Element* newParent)
124 Node* node = startNode;
visible_units.cpp 366 Node *startNode;
375 startNode = startRenderer->node();
376 if (startNode)
382 VisiblePosition visPos = startNode->isTextNode() ? VisiblePosition(Position(startNode, static_cast<InlineTextBox *>(startBox)->start(), Position::PositionIsOffsetInAnchor), DOWNSTREAM)
383 : VisiblePosition(positionBeforeNode(startNode), DOWNSTREAM);
746 Node* startNode = p.deprecatedNode();
748 if (!startNode)
751 if (isRenderedAsNonInlineTableImageOrHR(startNode))
752 return positionBeforeNode(startNode);
    [all...]
markup.cpp 126 Node* serializeNodes(Node* startNode, Node* pastEnd);
320 Node* StyledMarkupAccumulator::serializeNodes(Node* startNode, Node* pastEnd)
325 for (Node* n = startNode; n != pastEnd; n = next) {
382 // or b) ancestors that we never encountered during a pre-order traversal starting at startNode:
383 ASSERT(startNode->isDescendantOf(parent));
561 Node* startNode = updatedRange->firstNode();
572 startNode = visibleStart.next().deepEquivalent().deprecatedNode();
575 if (pastEnd && Range::compareBoundaryPoints(startNode, 0, pastEnd, 0, ec) >= 0) {
592 Node* lastClosed = accumulator.serializeNodes(startNode, pastEnd);
    [all...]
TypingCommand.cpp 175 Node* startNode = selectionForInsertion.start().deprecatedNode();
177 if (startNode && startNode->rootEditableElement() && compositionType != TextCompositionUpdate) {
181 startNode->rootEditableElement()->dispatchEvent(evt, ec);
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
TreeWalker2Result.java 102 protected void startNode(int node) throws org.xml.sax.SAXException
115 super.startNode(node);
146 super.startNode(node);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/
AndroidXmlFormattingStrategy.java 167 Node startNode = null;
185 startNode = currentDOMNode;
216 if (endNode == startNode && endRegion == startRegion) {
261 if (startNode == null || endNode == null) {
266 startNode = root;
271 root = DomUtilities.getCommonAncestor(startNode, endNode);
278 replaceStart = ((IndexedRegion) startNode).getStartOffset();
287 if (startNode.getNodeType() == Node.ELEMENT_NODE) {
302 IndentationMeasurer m = new IndentationMeasurer(startNode, endNode, document);
316 int depth = DomUtilities.getDepth(startNode) - 1
    [all...]
XmlPrettyPrinter.java 129 * startNode or contain it as a descendant.
134 * @param startNode the node to start formatting at
137 * @param openTagOnly if true, only format the open tag of the startNode (and nothing
140 public void prettyPrint(int rootDepth, Node root, Node startNode, Node endNode,
142 if (startNode == null) {
143 startNode = root;
148 assert !openTagOnly || startNode == endNode;
150 mStartNode = startNode;
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebHTMLRepresentation.h 62 - (NSAttributedString *)attributedStringFrom:(DOMNode *)startNode startOffset:(int)startOffset to:(DOMNode *)endNode endOffset:(int)endOffset;
  /libcore/luni/src/main/java/java/util/prefs/
AbstractPreferences.java 526 AbstractPreferences startNode = null;
536 startNode = root;
539 startNode = this;
543 return startNode.nodeImpl(name, true);
602 AbstractPreferences startNode = null;
615 startNode = root;
618 startNode = this;
622 Preferences result = startNode.nodeImpl(name, false);
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMTreeWalker.java 98 * operating as a Visitor. startNode (preorder) and endNode
114 startNode(pos);
148 * operating as a Visitor. startNode (preorder) and endNode
167 startNode(pos);
215 protected void startNode(int node) throws org.xml.sax.SAXException
  /external/webkit/Source/WebCore/dom/
Position.cpp 519 Node* startNode = deprecatedNode();
520 if (!startNode)
524 Node* boundary = enclosingVisualBoundary(startNode);
528 bool startEditable = startNode->rendererIsEditable();
529 Node* lastNode = startNode;
580 if (currentNode != startNode) {
641 Node* startNode = deprecatedNode();
642 if (!startNode)
646 Node* boundary = enclosingVisualBoundary(startNode);
650 bool startEditable = startNode->rendererIsEditable()
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/formatting/
XmlPrettyPrinterTest.java 52 Node startNode = document;
55 startNode = findNode(document.getDocumentElement(), startNodeName);
61 printer.prettyPrint(-1, document, startNode, endNode, sb, false/*openTagOnly*/);
  /external/icu4c/common/
rbbitblb.cpp 457 RBBINode *startNode;
459 startNode = (RBBINode *)matchStartNodes->elementAt(startNodeIx);
460 if (startNode->fType != RBBINode::leafChar) {
464 if (endNode->fVal == startNode->fVal) {
471 // to the second char of a match starting with startNode.
472 setAdd(endNode->fFollowPos, startNode->fFollowPos);
516 RBBINode *startNode;
519 startNode = (RBBINode *)matchStartNodes->elementAt(startNodeIx);
520 if (startNode->fType != RBBINode::leafChar) {
524 if (startNode->fVal == bofNode->fVal)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
TreeWalker.java 145 startNode(pos);
199 startNode(pos);
258 protected void startNode(Node node) throws org.xml.sax.SAXException
322 // System.out.println("TreeWalker#startNode: "+node.getNodeName());
334 // System.out.println("TreeWalker#startNode: attr["+i+"] = "+attrName+", "+attr.getNodeValue());
  /external/apache-xml/src/main/java/org/apache/xml/utils/
TreeWalker.java 177 startNode(pos);
230 startNode(pos);
289 protected void startNode(Node node) throws org.xml.sax.SAXException
335 // System.out.println("TreeWalker#startNode: "+node.getNodeName());
342 // System.out.println("TreeWalker#startNode: attr["+i+"] = "+attrName+", "+attr.getNodeValue());
345 // System.out.println("TreeWalker#startNode: attr["+i+"] = "+attrName+", "+attr.getNodeValue());
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
SAX2DTM2.java     [all...]
  /external/webkit/Source/WebKit/win/
WebHTMLRepresentation.h 61 /* [in] */ IDOMNode* startNode,
  /external/webkit/Source/WebCore/inspector/front-end/
utilities.js 48 var startNode;
60 if (!startNode)
61 startNode = stayWithinNode;
69 startNode = node;
76 if (startNode)
82 if (!startNode) {
83 startNode = stayWithinNode;
87 startNode = this;
127 result.setStart(startNode, startOffset);
  /external/srec/tools/make_ve_grammar/
make_ve_grammar.c 99 nodeID startNode = 0;
205 fprintf(pFile_PCLG,"%d\t%d\thmm%d_#sil#\t-pau-\n", startNode, pauEndNode, i);
  /external/webkit/Source/WebKit/win/Interfaces/
IWebHTMLRepresentation.idl 62 - (NSAttributedString *)attributedStringFrom:(DOMNode *)startNode startOffset:(int)startOffset to:(DOMNode *)endNode endOffset:(int)endOffset;
64 HRESULT attributedStringFromDOMNodes([in] IDOMNode* startNode, [in] int startOffset, [in] IDOMNode* endNode, [in] int endOffset, [out, retval] IDataObject** attributedString);

Completed in 794 milliseconds

1 2