Searched defs:startNode (Results 1 - 25 of 34) 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
/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
/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
/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/chromium_org/third_party/WebKit/Source/core/editing/
H A DBreakBlockquoteCommand.cpp106 // startNode is the first node that we need to move to the new blockquote.
107 Node* startNode = pos.deprecatedNode(); local
110 if (startNode->isTextNode()) {
111 Text* textNode = toText(startNode);
113 startNode = NodeTraversal::next(startNode);
114 ASSERT(startNode);
118 Node* childAtOffset = startNode->childNode(pos.deprecatedEditingOffset());
119 startNode = childAtOffset ? childAtOffset : NodeTraversal::next(startNode);
[all...]
H A DEditCommand.cpp114 void SimpleEditCommand::addNodeAndDescendants(Node* startNode, HashSet<Node*>& nodes) argument
116 for (Node* node = startNode; node; node = NodeTraversal::next(node, startNode))
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 DDeleteSelectionCommand.cpp451 Node* startNode = m_upstreamStart.deprecatedNode(); local
456 if (startNode->isSameNode(m_startBlock.get()) && !startOffset && canHaveChildrenForEditing(startNode) && !isHTMLTableElement(startNode)) {
458 startNode = NodeTraversal::next(startNode);
459 if (!startNode)
463 if (startOffset >= caretMaxOffset(startNode) && startNode->isTextNode()) {
464 Text* text = toText(startNode);
[all...]
H A DApplyStyleCommand.cpp358 Node* startNode = start.deprecatedNode(); local
359 if (startNode->isTextNode() && start.deprecatedEditingOffset() >= caretMaxOffset(startNode)) // Move out of text node if range does not include its characters.
360 startNode = NodeTraversal::next(startNode);
365 for (Node *node = startNode; node != beyondEnd; node = NodeTraversal::next(node))
372 for (Node* node = startNode; node != beyondEnd; node = NodeTraversal::next(node)) {
528 static Node* highestEmbeddingAncestor(Node* startNode, Node* enclosingNode) argument
530 for (Node* n = startNode; n && n != enclosingNode; n = n->parentNode()) {
673 Node* startNode local
739 applyInlineStyleToNodeRange(EditingStyle* style, PassRefPtr<Node> startNode, PassRefPtr<Node> pastEndNode) argument
1256 Node* startNode = start.containerNode(); local
1334 RefPtr<Node> startNode = passedStartNode; local
1402 positionToComputeInlineStyleChange(PassRefPtr<Node> startNode, RefPtr<Node>& dummyElement) argument
1417 RefPtr<Node> startNode = passedStart; local
[all...]
H A DCompositeEditCommand.cpp1019 RefPtr<Node> startNode = start.deprecatedNode(); local
1020 for (RefPtr<Node> node = NodeTraversal::nextSkippingChildren(startNode.get(), outerNode.get()); node; node = NodeTraversal::nextSkippingChildren(node.get(), outerNode.get())) {
1024 while (startNode->parentNode() != node->parentNode()) {
1025 startNode = startNode->parentNode();
H A DReplaceSelectionCommand.cpp1292 Node* startNode = startDownstream.computeNodeAfterPosition(); local
1295 startNode = startDownstream.containerNode();
1300 if (needsLeadingSpace && startNode) {
1301 bool collapseWhiteSpace = !startNode->renderer() || startNode->renderer()->style()->collapseWhiteSpace();
1302 if (startNode->isTextNode()) {
1303 insertTextIntoNode(toText(startNode), startOffset, collapseWhiteSpace ? nonBreakingSpaceString() : " ");
1304 if (m_endOfInsertedContent.containerNode() == startNode && m_endOfInsertedContent.offsetInContainerNode())
1310 insertNodeBefore(node, startNode);
/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/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());
/external/srec/tools/make_ve_grammar/
H A Dmake_ve_grammar.c99 nodeID startNode = 0; local
205 fprintf(pFile_PCLG,"%d\t%d\thmm%d_#sil#\t-pau-\n", startNode, pauEndNode, i);
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DV8GCController.cpp186 void gcTree(v8::Isolate* isolate, Node* startNode) argument
190 Node* node = startNode;
/external/aac/libAACdec/src/
H A Daacdec_hcrs.cpp388 UINT startNode; local
411 startNode = *aHuffTable[pExtendedSortedCodebook[extendedSortedCodebookIdx]];
420 *iNode++ = startNode;
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
H A DDOM3TreeWalker.java272 startNode(pos);
345 startNode(pos);
395 protected void startNode(Node node) throws org.xml.sax.SAXException { method in class:DOM3TreeWalker
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLTextFormControlElement.cpp458 Node* startNode = 0; local
466 setContainerAndOffsetForRange(node, start - offset, startNode, start);
476 if (!startNode || !endNode)
479 return Range::create(document(), startNode, start, endNode, end);
/external/chromium_org/third_party/icu/source/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/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/chromium_org/third_party/WebKit/Source/core/dom/
H A DPosition.cpp589 Node* startNode = deprecatedNode(); local
590 if (!startNode)
594 Node* boundary = enclosingVisualBoundary(startNode);
598 bool startEditable = startNode->rendererIsEditable();
599 Node* lastNode = startNode;
650 if (currentNode != startNode) {
712 Node* startNode = deprecatedNode(); local
713 if (!startNode)
717 Node* boundary = enclosingVisualBoundary(startNode);
721 bool startEditable = startNode
[all...]
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DDragController.cpp615 Node* DragController::draggableNode(const Frame* src, Node* startNode, const IntPoint& dragOrigin, DragState& state) const argument
619 for (const RenderObject* renderer = startNode->renderer(); renderer; renderer = renderer->parent()) {
653 return (state.m_dragType & DragSourceActionSelection) ? startNode : 0;
/external/chromium_org/v8/test/cctest/
H A Dtest-cpu-profiler.cc582 const v8::CpuProfileNode* startNode = GetChild(root, "start"); local
583 CHECK_EQ(1, startNode->GetChildrenCount());
585 const v8::CpuProfileNode* fooNode = GetChild(startNode, "foo");
646 const v8::CpuProfileNode* startNode = FindChild(root, "start"); local
649 if (startNode && startNode->GetChildrenCount() > 0) {
650 CHECK_EQ(1, startNode->GetChildrenCount());
651 const v8::CpuProfileNode* delayNode = GetChild(startNode, "delay");
751 const v8::CpuProfileNode* startNode = GetChild(root, "start"); local
752 GetChild(startNode, "ge
801 const v8::CpuProfileNode* startNode = GetChild(root, "start"); local
846 const v8::CpuProfileNode* startNode = GetChild(root, "start"); local
893 const v8::CpuProfileNode* startNode = GetChild(root, "start"); local
936 const v8::CpuProfileNode* startNode = GetChild(root, "start"); local
999 const v8::CpuProfileNode* startNode = FindChild(root, "start"); local
1070 const v8::CpuProfileNode* startNode = FindChild(root, "start"); local
1160 const v8::CpuProfileNode* startNode = GetChild(root, "start"); local
1230 const v8::CpuProfileNode* startNode = GetChild(root, "start"); local
1310 const v8::CpuProfileNode* startNode = GetChild(root, "start"); local
[all...]

Completed in 3354 milliseconds

12