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

1 2 3

  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRTreeRuleReturnScope.h 37 ANTLRCommonTree *startNode;
40 @property (retain, getter=getStart, setter=setStart:) ANTLRCommonTree *startNode;
ANTLRTreeNodeStream.h 48 - (NSString *) toStringFromNode:(id)startNode ToNode:(id)stopNode;
ANTLRCommonTreeNodeStream.h 111 - (NSString *) toStringFromNode:(id<ANTLRTree>)startNode ToNode:(id<ANTLRTree>)stopNode;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRTreeRuleReturnScope.h 37 ANTLRCommonTree *startNode;
40 @property (retain, getter=getStart, setter=setStart:) ANTLRCommonTree *startNode;
ANTLRTreeNodeStream.h 48 - (NSString *) toStringFromNode:(id)startNode ToNode:(id)stopNode;
ANTLRCommonTreeNodeStream.h 111 - (NSString *) toStringFromNode:(id<ANTLRTree>)startNode ToNode:(id<ANTLRTree>)stopNode;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRTreeRuleReturnScope.h 37 ANTLRCommonTree *startNode;
40 @property (retain, getter=getStart, setter=setStart:) ANTLRCommonTree *startNode;
ANTLRTreeNodeStream.h 48 - (NSString *) toStringFromNode:(id)startNode ToNode:(id)stopNode;
ANTLRCommonTreeNodeStream.h 111 - (NSString *) toStringFromNode:(id<ANTLRTree>)startNode ToNode:(id<ANTLRTree>)stopNode;
  /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...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRTreeNodeStream.h 47 - (NSString *) toStringFromNode:(id)startNode ToNode:(id)stopNode;
  /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 168 Node startNode = null;
186 startNode = currentDOMNode;
217 if (endNode == startNode && endRegion == startRegion) {
262 if (startNode == null || endNode == null) {
267 startNode = root;
272 root = DomUtilities.getCommonAncestor(startNode, endNode);
279 replaceStart = ((IndexedRegion) startNode).getStartOffset();
288 if (startNode.getNodeType() == Node.ELEMENT_NODE) {
303 IndentationMeasurer m = new IndentationMeasurer(startNode, endNode, document);
317 int depth = DomUtilities.getDepth(startNode) - 1
    [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 67 Node startNode = document;
70 startNode = findNode(document.getDocumentElement(), startNodeName);
76 printer.prettyPrint(-1, document, startNode, endNode, sb, false/*openTagOnly*/);
    [all...]
  /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...]

Completed in 374 milliseconds

1 2 3