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

1 2

  /external/webkit/Source/WebCore/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...]
TextIterator.cpp     [all...]
visible_units.cpp 412 Node *endNode;
422 endNode = endRenderer->node();
423 if (endNode)
430 if (endNode->hasTagName(brTag)) {
431 pos = positionBeforeNode(endNode);
437 pos = Position(endNode, endOffset, Position::PositionIsOffsetInAnchor);
439 pos = positionAfterNode(endNode);
    [all...]
  /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/webkit/Source/JavaScriptCore/profiler/
Profile.cpp 61 ProfileNode* endNode = m_head->traverseNextNodePostOrder();
62 while (currentNode && currentNode != endNode) {
  /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/webkit/Source/WebKit/mac/WebView/
WebHTMLRepresentation.h 62 - (NSAttributedString *)attributedStringFrom:(DOMNode *)startNode startOffset:(int)startOffset to:(DOMNode *)endNode endOffset:(int)endOffset;
WebHTMLRepresentation.mm 278 - (NSAttributedString *)attributedStringFrom:(DOMNode *)startNode startOffset:(int)startOffset to:(DOMNode *)endNode endOffset:(int)endOffset
280 return [WebHTMLConverter editingAttributedStringFromRange:Range::create(core(startNode)->document(), core(startNode), startOffset, core(endNode), endOffset).get()];
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/
AndroidXmlFormattingStrategy.java 168 Node endNode = null;
213 endNode = currentDOMNode;
216 if (endNode == startNode && endRegion == startRegion) {
261 if (startNode == null || endNode == null) {
267 endNode = root;
271 root = DomUtilities.getCommonAncestor(startNode, endNode);
282 replaceEnd = ((IndexedRegion) endNode).getEndOffset();
302 IndentationMeasurer m = new IndentationMeasurer(startNode, endNode, document);
333 printer.prettyPrint(initialDepth, root, startNode, endNode, sb, isOpenTagOnly);
XmlPrettyPrinter.java 143 * @param endNode the node to end formatting at
148 public void prettyPrint(int rootDepth, Node root, Node startNode, Node endNode,
153 if (endNode == null) {
154 endNode = root;
156 assert !openTagOnly || startNode == endNode;
160 mEndNode = endNode;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DomUtilities.java 372 Node endNode = beginNode;
374 endNode = getNode(document, endOffset, false);
377 if (beginNode == null || endNode == null) {
400 if (endNode.getNodeType() != Node.ELEMENT_NODE) {
403 endElement = getPreviousElement(endNode);
407 endElement = getNextElement(endNode);
412 endElement = getParentElement(endNode);
416 endElement = (Element) endNode;
    [all...]
  /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/
XmlPrettyPrinterTest.java 68 Node endNode = document;
73 endNode = findNode(document.getDocumentElement(), endNodeName);
76 printer.prettyPrint(-1, document, startNode, endNode, sb, false/*openTagOnly*/);
    [all...]
  /external/webkit/Source/WebKit/win/
WebHTMLRepresentation.h 63 /* [in] */ IDOMNode* endNode,
  /external/webkit/Source/WebCore/inspector/front-end/
utilities.js 50 var endNode;
95 if (!endNode)
96 endNode = stayWithinNode;
104 endNode = node;
111 if (endNode)
117 if (!endNode) {
118 endNode = stayWithinNode;
122 endNode = this;
128 result.setEnd(endNode, endOffset);
  /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);
  /external/webkit/Source/WebCore/rendering/
RenderTextControl.cpp 307 Node* endNode = 0;
317 setContainerAndOffsetForRange(node, end - offset, endNode, end);
324 if (!startNode || !endNode)
327 return Range::create(document(), startNode, start, endNode, end);
  /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 322 RBBINode *endNode = pushNewNode(RBBINode::endMark);
326 catNode->fRightChild = endNode;
328 endNode->fVal = fRuleNum;
329 endNode->fLookAheadEnd = TRUE;
    [all...]
  /external/srec/tools/grxmlcompile/
grxmldoc.h 99 bool endNode( XMLNode &node, SubGraph *&p_SubGraph, const unsigned int level );
  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DOM3TreeWalker.java 279 endNode(pos);
291 endNode(pos);
352 endNode(pos);
446 protected void endNode(Node node) throws org.xml.sax.SAXException {
    [all...]

Completed in 285 milliseconds

1 2