HomeSort by relevance Sort by last modified time
    Searched refs:startNode (Results 26 - 50 of 75) sorted by null

12 3

  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTextFormControlElement.cpp 326 Node* startNode = passedPosition.computeNodeBeforePosition();
327 if (!startNode)
328 startNode = passedPosition.containerNode();
329 ASSERT(startNode);
330 ASSERT(innerEditor->contains(startNode));
332 for (Node* node = startNode; node; node = NodeTraversal::previous(*node, innerEditor)) {
521 Node* startNode = 0;
529 setContainerAndOffsetForRange(node, start - offset, startNode, start);
539 if (!startNode || !endNode)
542 return Range::create(document(), startNode, start, endNode, end)
    [all...]
  /external/chromium_org/third_party/icu/source/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...]
  /external/icu/icu4c/source/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...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
TreeWalker.java 145 startNode(pos);
199 startNode(pos);
258 protected void startNode(Node node) throws org.xml.sax.SAXException
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/
TreeWalker.java 177 startNode(pos);
230 startNode(pos);
289 protected void startNode(Node node) throws org.xml.sax.SAXException
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/chromium_org/third_party/WebKit/Source/core/editing/
markup.cpp 136 Node* serializeNodes(Node* startNode, Node* pastEnd);
152 Node* traverseNodesForSerialization(Node* startNode, Node* pastEnd, NodeTraversalMode);
346 Node* StyledMarkupAccumulator::serializeNodes(Node* startNode, Node* pastEnd)
349 Node* lastClosed = traverseNodesForSerialization(startNode, pastEnd, DoNotEmitString);
362 return traverseNodesForSerialization(startNode, pastEnd, EmitString);
365 Node* StyledMarkupAccumulator::traverseNodesForSerialization(Node* startNode, Node* pastEnd, NodeTraversalMode traversalMode)
371 for (Node* n = startNode; n != pastEnd; n = next) {
432 // or b) ancestors that we never encountered during a pre-order traversal starting at startNode:
433 ASSERT(startNode->isDescendantOf(parent));
590 Node* startNode = updatedRange->firstNode()
    [all...]
ApplyStyleCommand.h 99 void applyInlineStyleToNodeRange(EditingStyle*, PassRefPtrWillBeRawPtr<Node> startNode, PassRefPtrWillBeRawPtr<Node> pastEndNode);
103 void applyInlineStyleChange(PassRefPtrWillBeRawPtr<Node> startNode, PassRefPtrWillBeRawPtr<Node> endNode, StyleChange&, EAddStyledElement);
ReplaceSelectionCommand.cpp     [all...]
TextIterator.cpp     [all...]
TextIterator.h 266 void init(Node* startNode, Node* endNode, int startOffset, int endOffset);
CompositeEditCommand.cpp     [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRCommonTreeNodeStream.h 112 - (NSString *) toStringFromNode:(id<ANTLRBaseTree>)startNode ToNode:(id<ANTLRBaseTree>)stopNode;
ANTLRUnbufferedCommonTreeNodeStream.h 93 - (NSString *) toStringFromNode:(id)startNode toNode:(id)stopNode;
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
SAX2DTM2.java     [all...]
SAX2DTM.java 530 int startNode = identity;
550 } while (DTM.NULL != identity && (_parent(identity) >= startNode));
    [all...]
  /external/srec/tools/make_ve_grammar/
make_ve_grammar.c 99 nodeID startNode = 0;
205 fprintf(pFile_PCLG,"%d\t%d\thmm%d_#sil#\t-pau-\n", startNode, pauEndNode, i);
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
HtmlTree.java 382 int startNode = Math.max(getBlockStart(textStart), minNode);
388 "node pos: " + startNode + "-" + endNode + "\n" +
395 for (int n = startNode; n < endNode;) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
V8GCController.cpp 220 void gcTree(v8::Isolate* isolate, Node* startNode)
224 Node* node = startNode;
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
navigation_history.js 41 var startNode = document.body;
49 this.history_ = [startNode];
  /external/chromium_org/third_party/WebKit/Source/core/page/
DragController.cpp 621 Node* DragController::draggableNode(const LocalFrame* src, Node* startNode, const IntPoint& dragOrigin, SelectionDragPolicy selectionDragPolicy, DragSourceAction& dragType) const
626 return startNode;
633 for (const RenderObject* renderer = startNode->renderer(); renderer; renderer = renderer->parent()) {
684 node = startNode;
    [all...]
EventHandler.h 258 // startNode - The node to start bubbling the scroll from. If a node can't scroll,
264 bool scroll(ScrollDirection, ScrollGranularity, Node* startNode = 0, Node** stopNode = 0, float delta = 1.0f, IntPoint absolutePoint = IntPoint());
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentLinkedDeque.java     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Node.cpp     [all...]
  /external/aac/libAACdec/src/
aacdec_hcrs.cpp 388 UINT startNode;
411 startNode = *aHuffTable[pExtendedSortedCodebook[extendedSortedCodebookIdx]];
420 *iNode++ = startNode;
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DOM3TreeWalker.java 272 startNode(pos);
345 startNode(pos);
395 protected void startNode(Node node) throws org.xml.sax.SAXException {
    [all...]

Completed in 782 milliseconds

12 3