Home
last modified time | relevance | path

Searched refs:rootNode (Results 1 – 14 of 14) sorted by relevance

/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowUriMatcher.java27 public MatchNode rootNode; field in ShadowUriMatcher
30 rootNode = new MatchNode(code); in __constructor__()
35 MatchNode authNode = rootNode.map.get(authority); in addURI()
37 authNode = new MatchNode(rootNode.code); in addURI()
38 rootNode.map.put(authority, authNode); in addURI()
50 if (!rootNode.map.containsKey(auth)) { in match()
51 return rootNode.code; in match()
54 return matchSegments(rootNode.map.get(auth), segments); in match()
79 return rootNode.code; in matchSegments()
89 nextNode = new MatchNode(rootNode.code); in addNodes()
[all …]
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowAccessibilityWindowInfo.java32 private AccessibilityNodeInfo rootNode = null; field in ShadowAccessibilityWindowInfo
79 newShadow.rootNode = rootNode; in getClone()
136 areEqual &= (rootNode == otherShadow.getRoot()); in equals()
187 return (rootNode == null) ? null : AccessibilityNodeInfo.obtain(rootNode); in getRoot()
230 rootNode = root; in setRoot()
/external/parameter-framework/upstream/test/functional-tests/
DHandle.cpp207 static string rootNode(string name, string attributes, string content) in rootNode() function
215 string expected = rootNode("BooleanParameter", "Name='bool' Description='bool'", "");
221 string expected = rootNode("ParameterBlock", "Name='component_scalar' "
229 string expected = rootNode(
256 string expected = rootNode("Subsystem", "Name='test'", paramExpected);
261 string expected = rootNode("SystemClass", "Name='test'",
278 return rootNode("ParameterBlock", "Name='" + name + "'", settings); in mkBasicSettings()
292 return rootNode("SystemClass", "Name='test'", node("Subsystem", "test", settings, "")); in fullXMLSettings()
/external/swiftshader/third_party/LLVM/tools/opt/
DPrintSCC.cpp95 CallGraphNode* rootNode = getAnalysis<CallGraph>().getRoot(); in runOnModule() local
98 for (scc_iterator<CallGraphNode*> SCCI = scc_begin(rootNode), in runOnModule()
99 E = scc_end(rootNode); SCCI != E; ++SCCI) { in runOnModule()
/external/testng/src/test/java/test/
DGraphTest.java151 final String rootNode = "myroot"; in findPredecessorsTiming() local
153 g.addNode(rootNode); in findPredecessorsTiming()
182 g.addPredecessor(rootNode, node); in findPredecessorsTiming()
193 List<String> predecessors = g.findPredecessors(rootNode); in findPredecessorsTiming()
/external/deqp/framework/common/
DtcuTestHierarchyIterator.cpp88 TestHierarchyIterator::TestHierarchyIterator (TestPackageRoot& rootNode, in TestHierarchyIterator() argument
95 NodeIter iter(&rootNode); in TestHierarchyIterator()
DtcuTestHierarchyIterator.hpp110 …TestHierarchyIterator (TestPackageRoot& rootNode, TestHierarchyInflater& inflater, const CaseListF…
/external/icu/icu4c/source/common/
Drbbitblb.h39 RBBITableBuilder(RBBIRuleBuilder *rb, RBBINode **rootNode);
Drbbitblb.cpp29 RBBITableBuilder::RBBITableBuilder(RBBIRuleBuilder *rb, RBBINode **rootNode) : in RBBITableBuilder() argument
30 fTree(*rootNode) { in RBBITableBuilder()
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/
DNode.java671 Node rootNode = findRootNode(); in findCompilationUnit() local
672 if (rootNode instanceof CompilationUnit) { in findCompilationUnit()
673 return Optional.of((CompilationUnit) rootNode); in findCompilationUnit()
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
DUriMatcherTest.java29 root = Robolectric.shadowOf(matcher).rootNode; in getMatcher()
/external/doclava/src/com/google/doclava/
DSampleCode.java91 Node rootNode = writeSampleIndexCs(hdf, f, in setSamplesTOC() local
93 return rootNode; in setSamplesTOC()
/external/python/cpython2/Lib/xml/dom/
Dminidom.py1909 toktype, rootNode = events.getEvent()
1910 events.expandNode(rootNode)
1912 return rootNode
/external/python/cpython3/Lib/xml/dom/
Dminidom.py1949 toktype, rootNode = events.getEvent()
1950 events.expandNode(rootNode)
1952 return rootNode