Searched refs:startNode (Results 1 - 25 of 50) sorted by relevance

12

/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRTreeRuleReturnScope.h37 ANTLRCommonTree *startNode; variable
40 @property (retain, getter=getStart, setter=setStart:) ANTLRCommonTree *startNode; variable
H A DANTLRTreeNodeStream.h48 - (NSString *) toStringFromNode:(id)startNode ToNode:(id)stopNode;
H A DANTLRCommonTreeNodeStream.h111 - (NSString *) toStringFromNode:(id<ANTLRTree>)startNode ToNode:(id<ANTLRTree>)stopNode;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRTreeRuleReturnScope.h37 ANTLRCommonTree *startNode; variable
40 @property (retain, getter=getStart, setter=setStart:) ANTLRCommonTree *startNode; variable
H A DANTLRTreeNodeStream.h48 - (NSString *) toStringFromNode:(id)startNode ToNode:(id)stopNode;
H A DANTLRCommonTreeNodeStream.h111 - (NSString *) toStringFromNode:(id<ANTLRTree>)startNode ToNode:(id<ANTLRTree>)stopNode;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRTreeRuleReturnScope.h37 ANTLRCommonTree *startNode; variable
40 @property (retain, getter=getStart, setter=setStart:) ANTLRCommonTree *startNode; variable
H A DANTLRTreeNodeStream.h48 - (NSString *) toStringFromNode:(id)startNode ToNode:(id)stopNode;
H A DANTLRCommonTreeNodeStream.h111 - (NSString *) toStringFromNode:(id<ANTLRTree>)startNode ToNode:(id<ANTLRTree>)stopNode;
/external/webkit/Source/WebCore/editing/
H A DBreakBlockquoteCommand.cpp105 // startNode is the first node that we need to move to the new blockquote.
106 Node* startNode = pos.deprecatedNode(); local
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
[all...]
H A DModifySelectionListLevel.h40 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);
H A DDeleteSelectionCommand.cpp433 Node* startNode = m_upstreamStart.deprecatedNode(); local
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))
759 Node* startNode = m_selectionToDelete.start().deprecatedNode(); local
[all...]
H A DApplyStyleCommand.cpp346 Node* startNode = start.deprecatedNode(); local
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) argument
520 for (Node* n = startNode; n && n != enclosingNode; n = n->parentNode()) {
661 Node* startNode local
1231 Node* startNode = start.containerNode(); local
1311 RefPtr<Node> startNode = passedStartNode; local
[all...]
H A DFormatBlockCommand.cpp40 static Node* enclosingBlockToSplitTreeTo(Node* startNode);
147 Node* enclosingBlockToSplitTreeTo(Node* startNode) argument
149 Node* lastBlock = startNode;
150 for (Node* n = startNode; n; n = n->parentNode()) {
H A DModifySelectionListLevel.cpp91 void ModifySelectionListLevelCommand::insertSiblingNodeRangeBefore(Node* startNode, Node* endNode, Node* refNode) argument
93 Node* node = startNode;
106 void ModifySelectionListLevelCommand::insertSiblingNodeRangeAfter(Node* startNode, Node* endNode, Node* refNode) argument
108 Node* node = startNode;
122 void ModifySelectionListLevelCommand::appendSiblingNodeRange(Node* startNode, Node* endNode, Element* newParent) argument
124 Node* node = startNode;
H A Dvisible_units.cpp366 Node *startNode; local
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(); local
748 if (!startNode)
751 if (isRenderedAsNonInlineTableImageOrHR(startNode))
752 return positionBeforeNode(startNode);
820 Node* startNode = p.deprecatedNode(); local
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRTreeNodeStream.h47 - (NSString *) toStringFromNode:(id)startNode ToNode:(id)stopNode;
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DXMPIteratorImpl.java64 XMPNode startNode = null;
72 startNode = xmp.getRoot();
86 startNode = XMPNodeUtils.findNode(xmp.getRoot(), path, false, null);
93 startNode = XMPNodeUtils.findSchemaNode(xmp.getRoot(), schemaNS, false);
103 if (startNode != null)
107 nodeIterator = new NodeIterator(startNode, initialPath, 1);
111 nodeIterator = new NodeIteratorChildren(startNode, initialPath);
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DTreeWalker2Result.java102 protected void startNode(int node) throws org.xml.sax.SAXException method in class:TreeWalker2Result
115 super.startNode(node);
146 super.startNode(node);
/external/webkit/Source/WebKit/mac/WebView/
H A DWebHTMLRepresentation.h62 - (NSAttributedString *)attributedStringFrom:(DOMNode *)startNode startOffset:(int)startOffset to:(DOMNode *)endNode endOffset:(int)endOffset;
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMTreeWalker.java98 * 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 method in class:DTMTreeWalker
/external/webkit/Source/WebCore/dom/
H A DPosition.cpp519 Node* startNode = deprecatedNode(); local
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(); local
642 if (!startNode)
646 Node* boundary = enclosingVisualBoundary(startNode);
650 bool startEditable = startNode
[all...]
/external/icu4c/common/
H A Drbbitblb.cpp457 RBBINode *startNode; local
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; local
519 startNode = (RBBINode *)matchStartNodes->elementAt(startNodeIx);
520 if (startNode->fType != RBBINode::leafChar) {
524 if (startNode
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DTreeWalker.java145 startNode(pos);
199 startNode(pos);
258 protected void startNode(Node node) throws org.xml.sax.SAXException method in class:TreeWalker
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/
H A DTreeWalker.java177 startNode(pos);
230 startNode(pos);
289 protected void startNode(Node node) throws org.xml.sax.SAXException method in class:TreeWalker
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());

Completed in 284 milliseconds

12