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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/editing/
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);
ModifySelectionListLevel.cpp 91 void ModifySelectionListLevelCommand::insertSiblingNodeRangeBefore(Node* startNode, Node* endNode, Node* refNode)
99 if (node == endNode)
106 void ModifySelectionListLevelCommand::insertSiblingNodeRangeAfter(Node* startNode, Node* endNode, Node* refNode)
114 if (node == endNode)
122 void ModifySelectionListLevelCommand::appendSiblingNodeRange(Node* startNode, Node* endNode, Element* newParent)
130 if (node == endNode)
ApplyStyleCommand.cpp     [all...]
ReplaceSelectionCommand.cpp     [all...]
VisibleUnits.cpp 802 Node* endNode;
805 endNode = rootBox->getLogicalEndBoxWithNode(endBox);
806 if (!endNode)
820 endNode = endRenderer->nonPseudoNode();
821 if (endNode)
829 if (endNode->hasTagName(brTag))
830 pos = positionBeforeNode(endNode);
831 else if (endBox->isInlineTextBox() && endNode->isTextNode()) {
836 pos = Position(toText(endNode), endOffset);
838 pos = positionAfterNode(endNode);
    [all...]
TextIterator.cpp     [all...]
Editor.cpp 504 Node* endNode = enclosingNodeWithTag(m_frame->selection()->selection().end(), ulTag);
505 if (startNode && endNode && startNode == endNode)
519 Node* endNode = enclosingNodeWithTag(m_frame->selection()->selection().end(), olTag);
520 if (startNode && endNode && startNode == endNode)
    [all...]
ApplyStyleCommand.h 102 void applyInlineStyleChange(PassRefPtr<Node> startNode, PassRefPtr<Node> endNode, StyleChange&, EAddStyledElement);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DOMExtension.js 40 var endNode;
85 if (!endNode)
86 endNode = stayWithinNode;
94 endNode = node;
101 if (endNode)
107 if (!endNode) {
108 endNode = stayWithinNode;
112 endNode = this;
118 result.setEnd(endNode, endOffset);
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
TreeWalker2Result.java 85 protected void endNode(int node) throws org.xml.sax.SAXException
87 super.endNode(node);
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMTreeWalker.java 98 * operating as a Visitor. startNode (preorder) and endNode
118 endNode(pos);
134 endNode(pos);
148 * operating as a Visitor. startNode (preorder) and endNode
171 endNode(pos);
363 protected void endNode(int node) throws org.xml.sax.SAXException
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
TreeWalker.java 151 endNode(pos);
165 endNode(pos);
205 endNode(pos);
448 protected void endNode(Node node) throws org.xml.sax.SAXException
  /external/apache-xml/src/main/java/org/apache/xml/utils/
TreeWalker.java 183 endNode(pos);
197 endNode(pos);
236 endNode(pos);
453 protected void endNode(Node node) throws org.xml.sax.SAXException
  /external/srec/tools/make_ve_grammar/
make_ve_grammar.c 105 nodeID endNode = 6;
227 fprintf(pFile_PCLG,"%d\t%d\t.wb\teps\n", pau2EndNode, endNode);
228 fprintf(pFile_PCLG,"%d\n", endNode);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/formatting/
EclipseXmlPrettyPrinterTest.java 70 Node endNode = document;
75 endNode = findNode(document.getDocumentElement(), endNodeName);
78 printer.prettyPrint(-1, document, startNode, endNode, sb, false/*openTagOnly*/);
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/lib/html/parser/
HtmlTree.java 346 int endNode = Math.min(getBlockEnd(textEnd), maxNode);
351 "node pos: " + startNode + "-" + endNode + "\n" +
358 for (int n = startNode; n < endNode;) {
366 if (nBegin >= n && nEnd <= endNode &&
378 if (nBegin >= blockStart && nEnd < endNode) {
388 ") exceeds (" + blockStart + " " + endNode + ")");
403 b.end_node = endNode;
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
HtmlTree.java 379 int endNode = Math.min(getBlockEnd(textEnd), maxNode);
384 "node pos: " + startNode + "-" + endNode + "\n" +
391 for (int n = startNode; n < endNode;) {
399 if (nBegin >= n && nEnd <= endNode &&
411 if (nBegin >= blockStart && nEnd < endNode) {
421 ") exceeds (" + blockStart + " " + endNode + ")");
436 b.end_node = endNode;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/
AndroidXmlFormattingStrategy.java 182 Node endNode = null;
227 endNode = currentDOMNode;
230 if (endNode == startNode && endRegion == startRegion) {
276 if (startNode == null || endNode == null) {
282 endNode = root;
291 root = DomUtilities.getCommonAncestor(startNode, endNode);
302 replaceEnd = ((IndexedRegion) endNode).getEndOffset();
322 IndentationMeasurer m = new IndentationMeasurer(startNode, endNode, document);
354 printer.prettyPrint(initialDepth, root, startNode, endNode, sb, isOpenTagOnly);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DomUtilities.java 396 Node endNode = beginNode;
398 endNode = getNode(document, endOffset, false);
401 if (beginNode == null || endNode == null) {
424 if (endNode.getNodeType() != Node.ELEMENT_NODE) {
427 endElement = getPreviousElement(endNode);
431 endElement = getNextElement(endNode);
436 endElement = getParentElement(endNode);
440 endElement = (Element) endNode;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTextFormControlElement.cpp 459 Node* endNode = 0;
469 setContainerAndOffsetForRange(node, end - offset, endNode, end);
476 if (!startNode || !endNode)
479 return Range::create(document(), startNode, start, endNode, end);
  /external/chromium_org/third_party/icu/source/common/
rbbitblb.cpp 422 RBBINode *endNode = NULL;
428 endNode = tNode;
432 if (endNode == NULL) {
444 UChar32 c = this->fRB->fSetBuilder->getFirstChar(endNode->fVal);
464 if (endNode->fVal == startNode->fVal) {
470 // letting matches transition from a match state at endNode
472 setAdd(endNode->fFollowPos, startNode->fFollowPos);
    [all...]
rbbiscan.cpp 322 RBBINode *endNode = pushNewNode(RBBINode::endMark);
326 catNode->fRightChild = endNode;
328 endNode->fVal = fRuleNum;
329 endNode->fLookAheadEnd = TRUE;
    [all...]
  /external/icu4c/common/
rbbitblb.cpp 422 RBBINode *endNode = NULL;
428 endNode = tNode;
432 if (endNode == NULL) {
444 UChar32 c = this->fRB->fSetBuilder->getFirstChar(endNode->fVal);
464 if (endNode->fVal == startNode->fVal) {
470 // letting matches transition from a match state at endNode
472 setAdd(endNode->fFollowPos, startNode->fFollowPos);
    [all...]
rbbiscan.cpp 323 RBBINode *endNode = pushNewNode(RBBINode::endMark);
327 catNode->fRightChild = endNode;
329 endNode->fVal = fRuleNum;
330 endNode->fLookAheadEnd = TRUE;
    [all...]
  /external/srec/tools/grxmlcompile/
grxmldoc.h 99 bool endNode( XMLNode &node, SubGraph *&p_SubGraph, const unsigned int level );

Completed in 777 milliseconds

1 2