Searched defs:startNode (Results 1 - 25 of 30) 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/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/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 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.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 DTypingCommand.cpp175 Node* startNode = selectionForInsertion.start().deprecatedNode(); local
177 if (startNode && startNode->rootEditableElement() && compositionType != TextCompositionUpdate) {
181 startNode->rootEditableElement()->dispatchEvent(evt, ec);
H A DReplaceSelectionCommand.cpp1148 Node* startNode = positionAtStartOfInsertedContent().deepEquivalent().downstream().deprecatedNode(); local
1149 if (startNode->isTextNode()) {
1150 Text* text = static_cast<Text*>(startNode);
1156 insertNodeBefore(node, startNode);
H A Dmarkup.cpp126 Node* serializeNodes(Node* startNode, Node* pastEnd);
320 Node* StyledMarkupAccumulator::serializeNodes(Node* startNode, Node* pastEnd) argument
325 for (Node* n = startNode; n != pastEnd; n = next) {
382 // or b) ancestors that we never encountered during a pre-order traversal starting at startNode:
383 ASSERT(startNode->isDescendantOf(parent));
561 Node* startNode = updatedRange->firstNode(); local
572 startNode = visibleStart.next().deepEquivalent().deprecatedNode();
575 if (pastEnd && Range::compareBoundaryPoints(startNode, 0, pastEnd, 0, ec) >= 0) {
592 Node* lastClosed = accumulator.serializeNodes(startNode, pastEnd);
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 DSelectionController.cpp1472 Node* startNode = start().containerNode(); local
1473 if (!startNode)
1476 startNode = startNode->shadowAncestorNode();
1477 if (!startNode)
1480 if (!startNode->hasTagName(inputTag))
1483 return static_cast<HTMLInputElement*>(startNode)->isPasswordField();
H A DTextIterator.cpp243 static bool checkFormControlElement(Node* startNode) argument
245 Node* node = startNode;
1104 Node* startNode = r->startContainer();
1105 if (!startNode)
1111 if (!startNode->offsetInCharacters()) {
1112 if (startOffset >= 0 && startOffset < static_cast<int>(startNode->childNodeCount())) {
1113 startNode = startNode->childNode(startOffset);
1130 m_startNode = 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/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/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/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/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...]
H A DNode.cpp2833 Node* startNode = this; local
2834 while (startNode && !startNode->renderer())
2835 startNode = startNode->parentOrHostNode();
2837 if (startNode && startNode->renderer())
2839 frame->eventHandler()->defaultWheelEventHandler(startNode, wheelEvent);
/external/webkit/Source/WebCore/rendering/
H A DRenderTextControl.cpp306 Node* startNode = 0; local
314 setContainerAndOffsetForRange(node, start - offset, startNode, start);
324 if (!startNode || !endNode)
327 return Range::create(document(), startNode, start, endNode, end);

Completed in 764 milliseconds

12