Home
last modified time | relevance | path

Searched refs:startNode (Results 1 – 24 of 24) sorted by relevance

/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
DXMPIteratorImpl.java64 XMPNode startNode = null; in XMPIteratorImpl() local
72 startNode = xmp.getRoot(); in XMPIteratorImpl()
86 startNode = XMPNodeUtils.findNode(xmp.getRoot(), path, false, null); in XMPIteratorImpl()
93 startNode = XMPNodeUtils.findSchemaNode(xmp.getRoot(), schemaNS, false); in XMPIteratorImpl()
103 if (startNode != null) in XMPIteratorImpl()
107 nodeIterator = new NodeIterator(startNode, initialPath, 1); in XMPIteratorImpl()
111 nodeIterator = new NodeIteratorChildren(startNode, initialPath); in XMPIteratorImpl()
/external/guava/android/guava/src/com/google/common/graph/
DTraverser.java225 public final Iterable<N> breadthFirst(N startNode) {
226 return breadthFirst(ImmutableSet.of(startNode));
280 public final Iterable<N> depthFirstPreOrder(N startNode) {
281 return depthFirstPreOrder(ImmutableSet.of(startNode));
335 public final Iterable<N> depthFirstPostOrder(N startNode) {
336 return depthFirstPostOrder(ImmutableSet.of(startNode));
/external/guava/guava/src/com/google/common/graph/
DTraverser.java225 public final Iterable<N> breadthFirst(N startNode) {
226 return breadthFirst(ImmutableSet.of(startNode));
280 public final Iterable<N> depthFirstPreOrder(N startNode) {
281 return depthFirstPreOrder(ImmutableSet.of(startNode));
335 public final Iterable<N> depthFirstPostOrder(N startNode) {
336 return depthFirstPostOrder(ImmutableSet.of(startNode));
/external/chromium-trace/catapult/third_party/polymer/components/shadycss/src/
Dstyle-transformer.js74 _transformDom(startNode, transformer) { argument
75 if (startNode.nodeType === Node.ELEMENT_NODE) {
76 transformer(startNode)
79 if (startNode.localName === 'template') {
80 const template = /** @type {!HTMLTemplateElement} */ (startNode);
85 c$ = /** @type {!ParentNode} */ (startNode).children ||
86 startNode.childNodes;
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
DTreeWalker2Result.java102 protected void startNode(int node) throws org.xml.sax.SAXException in startNode() method in TreeWalker2Result
115 super.startNode(node); in startNode()
146 super.startNode(node); in startNode()
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
DSAX2DTM2.java1569 final int startNode = _startNode; in next() local
1570 if (startNode == NULL) { in next()
1574 if (_includeSelf && (_currentNode + 1) == startNode) in next()
1582 if (startNode == ROOTNODE) { in next()
1660 final int startNode = _startNode; in next() local
1677 if (NULL == expType || _parent2(node) < startNode && startNode != node) { in next()
1687 else if (startNode == DTMDefaultBase.ROOTNODE) in next()
1708 if (NULL == expType || _parent2(node) < startNode && startNode != node) { in next()
2783 int startNode = identity; in getStringValue() local
2818 } while (_parent2(identity) >= startNode); in getStringValue()
[all …]
DSAX2DTM.java530 int startNode = identity; in dispatchCharactersEvents() local
550 } while (DTM.NULL != identity && (_parent(identity) >= startNode)); in dispatchCharactersEvents()
1273 int startNode = identity; in getStringValue() local
1293 } while (DTM.NULL != identity && (_parent(identity) >= startNode)); in getStringValue()
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DDTMTreeWalker.java114 startNode(pos); in traverse()
167 startNode(pos); in traverse()
215 protected void startNode(int node) throws org.xml.sax.SAXException in startNode() method in DTMTreeWalker
/external/apache-xml/src/main/java/org/apache/xml/serializer/
DTreeWalker.java145 startNode(pos); in traverse()
199 startNode(pos); in traverse()
258 protected void startNode(Node node) throws org.xml.sax.SAXException in startNode() method in TreeWalker
/external/apache-xml/src/main/java/org/apache/xml/utils/
DTreeWalker.java177 startNode(pos); in traverseFragment()
230 startNode(pos); in traverse()
289 protected void startNode(Node node) throws org.xml.sax.SAXException in startNode() method in TreeWalker
/external/icu/icu4c/source/common/
Drbbitblb.cpp477 RBBINode *startNode; in calcChainedFollowPos() local
479 startNode = (RBBINode *)matchStartNodes.elementAt(startNodeIx); in calcChainedFollowPos()
480 if (startNode->fType != RBBINode::leafChar) { in calcChainedFollowPos()
484 if (endNode->fVal == startNode->fVal) { in calcChainedFollowPos()
492 setAdd(endNode->fFollowPos, startNode->fFollowPos); in calcChainedFollowPos()
536 RBBINode *startNode; in bofFixup() local
539 startNode = (RBBINode *)matchStartNodes->elementAt(startNodeIx); in bofFixup()
540 if (startNode->fType != RBBINode::leafChar) { in bofFixup()
544 if (startNode->fVal == bofNode->fVal) { in bofFixup()
550 setAdd(bofNode->fFollowPos, startNode->fFollowPos); in bofFixup()
/external/antlr/runtime/ObjC/Framework/
DTreeNodeStream.h88 - (NSString *) toStringFromNode:(id)startNode ToNode:(id)stopNode;
DDebugTreeNodeStream.m170 - (NSString *) toStringFromToken:(id)startNode ToToken:(id)stopNode
172 return [input toStringFromToken:(id<Token>)startNode ToToken:(id<Token>)stopNode];
DCommonTreeNodeStream.h112 - (NSString *) toStringFromNode:(id<BaseTree>)startNode ToNode:(id<BaseTree>)stopNode;
DUnbufferedCommonTreeNodeStream.h93 - (NSString *) toStringFromNode:(id)startNode toNode:(id)stopNode;
DCommonTreeNodeStream.m221 - (NSString *) toStringFromNode:(id<BaseTree>)startNode ToNode:(id<BaseTree>)stopNode
DUnbufferedCommonTreeNodeStream.m174 - (NSString *) toStringFromNode:(id)startNode ToNode:(id)stopNode
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DRBBITableBuilder.java462 for (RBBINode startNode : matchStartNodes) { in calcChainedFollowPos()
463 if (startNode.fType != RBBINode.leafChar) { in calcChainedFollowPos()
467 if (endNode.fVal == startNode.fVal) { in calcChainedFollowPos()
475 endNode.fFollowPos.addAll(startNode.fFollowPos); in calcChainedFollowPos()
514 for (RBBINode startNode : matchStartNodes) { in bofFixup()
515 if (startNode.fType != RBBINode.leafChar) { in bofFixup()
519 if (startNode.fVal == bofNode.fVal) { in bofFixup()
525 bofNode.fFollowPos.addAll(startNode.fFollowPos); in bofFixup()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DRBBITableBuilder.java463 for (RBBINode startNode : matchStartNodes) { in calcChainedFollowPos()
464 if (startNode.fType != RBBINode.leafChar) { in calcChainedFollowPos()
468 if (endNode.fVal == startNode.fVal) { in calcChainedFollowPos()
476 endNode.fFollowPos.addAll(startNode.fFollowPos); in calcChainedFollowPos()
515 for (RBBINode startNode : matchStartNodes) { in bofFixup()
516 if (startNode.fType != RBBINode.leafChar) { in bofFixup()
520 if (startNode.fVal == bofNode.fVal) { in bofFixup()
526 bofNode.fFollowPos.addAll(startNode.fFollowPos); in bofFixup()
/external/dagger2/java/dagger/internal/codegen/bindinggraphvalidation/
DDependencyCycleValidator.java297 Cycle<N> shift(N startNode) { in shift() argument
298 int startIndex = Iterables.indexOf(endpointPairs(), pair -> pair.source().equals(startNode)); in shift()
300 startIndex >= 0, "startNode (%s) is not part of this cycle: %s", startNode, this); in shift()
/external/aac/libAACdec/src/
Daacdec_hcrs.cpp434 UINT startNode; in InitNonPCWSideInformationForCurrentSet() local
464 startNode = *aHuffTable[pExtendedSortedCodebook[extendedSortedCodebookIdx]]; in InitNonPCWSideInformationForCurrentSet()
476 *iNode++ = startNode; in InitNonPCWSideInformationForCurrentSet()
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DDOM3TreeWalker.java272 startNode(pos); in traverse()
345 startNode(pos); in traverse()
395 protected void startNode(Node node) throws org.xml.sax.SAXException { in startNode() method in DOM3TreeWalker
/external/pdfium/xfa/fxfa/parser/
Delements.inc80 ELEM____(0x27875bb4u, "startNode", StartNode, NodeWithDesc)
/external/chromium-trace/catapult/third_party/polymer/components/shadycss/
Dscoping-shim.min.js.map1startNode","transformer","nodeType","ELEMENT_NODE","c$","childNodes","_content","children","should…