Home
last modified time | relevance | path

Searched refs:nodeList (Results 1 – 25 of 278) sorted by relevance

12345678910>>...12

/aosp_15_r20/external/jsilver/src/com/google/clearsilver/jsilver/syntax/parser/
H A DParser.java19 protected ArrayList nodeList; field in Parser
42 this.nodeList = listNode; in push()
46 this.stack.add(new State(numstate, this.nodeList)); in push()
52 s.nodes = this.nodeList; in push()
875 @SuppressWarnings("hiding") ArrayList nodeList = new ArrayList(); in new0() local
883 nodeList.add(pcommandNode1); in new0()
884 return nodeList; in new0()
892 @SuppressWarnings("hiding") ArrayList nodeList = new ArrayList(); in new1() local
897 nodeList.add(pcommandNode1); in new1()
898 return nodeList; in new1()
[all …]
/aosp_15_r20/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/lexicalpreservation/
H A DLexicalDifferenceCalculator.java89 …lculateListRemovalDifference(ObservableProperty observableProperty, NodeList nodeList, int index) { in calculateListRemovalDifference() argument
90 Node container = nodeList.getParentNodeForChildren(); in calculateListRemovalDifference()
93 …xModel after = calculatedSyntaxModelAfterListRemoval(element, observableProperty, nodeList, index); in calculateListRemovalDifference()
97 …eListAdditionDifference(ObservableProperty observableProperty, NodeList nodeList, int index, Node … in calculateListAdditionDifference() argument
98 Node container = nodeList.getParentNodeForChildren(); in calculateListAdditionDifference()
101 …r = calculatedSyntaxModelAfterListAddition(element, observableProperty, nodeList, index, nodeAdded… in calculateListAdditionDifference()
105 …stReplacementDifference(ObservableProperty observableProperty, NodeList nodeList, int index, Node … in calculateListReplacementDifference() argument
106 Node container = nodeList.getParentNodeForChildren(); in calculateListReplacementDifference()
109 … calculatedSyntaxModelAfterListReplacement(element, observableProperty, nodeList, index, newValue); in calculateListReplacementDifference()
163 NodeList nodeList; in calculatedSyntaxModelForNode() local
[all …]
/aosp_15_r20/external/guava/guava-tests/test/com/google/common/graph/
H A DNetworkMutationTest.java63 ArrayList<Integer> nodeList = new ArrayList<>(network.nodes()); in testNetworkMutation() local
68 getRandomElement(nodeList, gen), getRandomElement(nodeList, gen), new Object())) in testNetworkMutation()
88 Collections.shuffle(nodeList, gen); in testNetworkMutation()
91 assertThat(network.removeNode(nodeList.get(i))).isTrue(); in testNetworkMutation()
99 assertThat(network.removeNode(nodeList.get(i))).isTrue(); in testNetworkMutation()
106 Collections.shuffle(nodeList, gen); in testNetworkMutation()
107 for (Integer node : nodeList) { in testNetworkMutation()
114 getRandomElement(nodeList, gen), getRandomElement(nodeList, gen), edge)) in testNetworkMutation()
H A DGraphMutationTest.java62 ArrayList<Integer> nodeList = new ArrayList<>(graph.nodes()); in testGraphMutation() local
64 graph.putEdge(getRandomElement(nodeList, gen), getRandomElement(nodeList, gen)); in testGraphMutation()
83 Collections.shuffle(nodeList, gen); in testGraphMutation()
86 assertThat(graph.removeNode(nodeList.get(i))).isTrue(); in testGraphMutation()
94 assertThat(graph.removeNode(nodeList.get(i))).isTrue(); in testGraphMutation()
101 Collections.shuffle(nodeList, gen); in testGraphMutation()
102 for (Integer node : nodeList) { in testGraphMutation()
/aosp_15_r20/external/guava/android/guava-tests/test/com/google/common/graph/
H A DNetworkMutationTest.java63 ArrayList<Integer> nodeList = new ArrayList<>(network.nodes()); in testNetworkMutation() local
68 getRandomElement(nodeList, gen), getRandomElement(nodeList, gen), new Object())) in testNetworkMutation()
88 Collections.shuffle(nodeList, gen); in testNetworkMutation()
91 assertThat(network.removeNode(nodeList.get(i))).isTrue(); in testNetworkMutation()
99 assertThat(network.removeNode(nodeList.get(i))).isTrue(); in testNetworkMutation()
106 Collections.shuffle(nodeList, gen); in testNetworkMutation()
107 for (Integer node : nodeList) { in testNetworkMutation()
114 getRandomElement(nodeList, gen), getRandomElement(nodeList, gen), edge)) in testNetworkMutation()
H A DGraphMutationTest.java62 ArrayList<Integer> nodeList = new ArrayList<>(graph.nodes()); in testGraphMutation() local
64 graph.putEdge(getRandomElement(nodeList, gen), getRandomElement(nodeList, gen)); in testGraphMutation()
83 Collections.shuffle(nodeList, gen); in testGraphMutation()
86 assertThat(graph.removeNode(nodeList.get(i))).isTrue(); in testGraphMutation()
94 assertThat(graph.removeNode(nodeList.get(i))).isTrue(); in testGraphMutation()
101 Collections.shuffle(nodeList, gen); in testGraphMutation()
102 for (Integer node : nodeList) { in testGraphMutation()
/aosp_15_r20/external/jsoup/src/test/java/org/jsoup/helper/
H A DW3CDomTest.java213 …NodeList nodeList = xpath(dom, "//*[local-name()=\"body\"]");// namespace aware; HTML namespace is… in xmlnsXpathTest() local
214 assertEquals("div", nodeList.item(0).getLocalName()); in xmlnsXpathTest()
219 nodeList = xpath(dom, "//body"); in xmlnsXpathTest()
220 assertNull(nodeList); // no matches in xmlnsXpathTest()
223 nodeList = xpath(dom, "//*[local-name()=\"body\"]"); in xmlnsXpathTest()
224 assertNotNull(nodeList); in xmlnsXpathTest()
225 assertEquals(1, nodeList.getLength()); in xmlnsXpathTest()
226 assertEquals("div", nodeList.item(0).getLocalName()); in xmlnsXpathTest()
227 assertEquals("http://www.w3.org/1999/xhtml", nodeList.item(0).getNamespaceURI()); in xmlnsXpathTest()
228 assertNull(nodeList.item(0).getPrefix()); in xmlnsXpathTest()
[all …]
/aosp_15_r20/hardware/interfaces/media/omx/1.0/vts/functional/store/
H A DVtsHalMediaOmxV1_0TargetStoreTest.cpp84 void displayComponentInfo(hidl_vec<IOmx::ComponentInfo>& nodeList) { in displayComponentInfo() argument
85 for (size_t i = 0; i < nodeList.size(); i++) { in displayComponentInfo()
86 printf("%s | ", nodeList[i].mName.c_str()); in displayComponentInfo()
87 for (size_t j = 0; j < ((nodeList[i]).mRoles).size(); j++) { in displayComponentInfo()
88 printf("%s ", nodeList[i].mRoles[j].c_str()); in displayComponentInfo()
309 hidl_vec<IOmx::ComponentInfo> nodeList; in TEST_P() local
311 omx->listNodes([&status, &nodeList](android::hardware::media::omx::V1_0::Status _s, in TEST_P()
314 nodeList = _nl; in TEST_P()
321 for (IOmx::ComponentInfo node : nodeList) { in TEST_P()
426 hidl_vec<IOmx::ComponentInfo> nodeList; in TEST_P() local
[all …]
/aosp_15_r20/frameworks/base/apct-tests/perftests/utils/src/android/perftests/utils/
H A DLayoutUtils.java27 private static void recursivelyGather(ViewGroup currentNode, List<View> nodeList) { in recursivelyGather() argument
28 nodeList.add(currentNode); in recursivelyGather()
33 recursivelyGather((ViewGroup) view, nodeList); in recursivelyGather() local
35 nodeList.add(view); in recursivelyGather()
52 public static void requestLayoutForAllNodes(List<View> nodeList) { in requestLayoutForAllNodes() argument
53 int count = nodeList.size(); in requestLayoutForAllNodes()
55 nodeList.get(i).requestLayout(); in requestLayoutForAllNodes()
/aosp_15_r20/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/
H A DNodeList.java100 public static <X extends Node> NodeList<X> nodeList(X... nodes) { in nodeList() method in NodeList
101 final NodeList<X> nodeList = new NodeList<>(); in nodeList() local
102 Collections.addAll(nodeList, nodes); in nodeList()
103 return nodeList; in nodeList()
106 public static <X extends Node> NodeList<X> nodeList(Collection<X> nodes) { in nodeList() method in NodeList
107 final NodeList<X> nodeList = new NodeList<>(); in nodeList() local
108 nodeList.addAll(nodes); in nodeList()
109 return nodeList; in nodeList()
112 public static <X extends Node> NodeList<X> nodeList(NodeList<X> nodes) { in nodeList() method in NodeList
113 final NodeList<X> nodeList = new NodeList<>(); in nodeList() local
[all …]
/aosp_15_r20/frameworks/av/media/libstagefright/omx/1.0/
H A DOmxStore.cpp48 const hidl_vec<IOmx::ComponentInfo> &nodeList) { in OmxStore() argument
50 for (const IOmx::ComponentInfo& info : nodeList) { in OmxStore()
102 hidl_vec<NodeInfo>& nodeList = role.nodes; in OmxStore() local
103 nodeList.resize(rolePair.second.nodeList.size()); in OmxStore()
105 for (const auto& nodePair : rolePair.second.nodeList) { in OmxStore()
126 nodeList[j] = std::move(node); in OmxStore()
129 nodeList.resize(j); in OmxStore()
/aosp_15_r20/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/concretesyntaxmodel/
H A DCsmList.java79 NodeList nodeList = property.getValueAsMultipleReference(node); in prettyPrint() local
80 if (nodeList == null) { in prettyPrint()
83 if (!nodeList.isEmpty() && preceeding != null) { in prettyPrint()
86 for (int i = 0; i < nodeList.size(); i++) { in prettyPrint()
90 ConcreteSyntaxModel.genericPrettyPrint(nodeList.get(i), printer); in prettyPrint()
91 if (separatorPost != null && i != (nodeList.size() - 1)) { in prettyPrint()
95 if (!nodeList.isEmpty() && following != null) { in prettyPrint()
/aosp_15_r20/external/deqp-deps/glslang/glslang/HLSL/
DhlslGrammar.h75 …bool acceptFullySpecifiedType(TType&, TIntermNode*& nodeList, const TAttributes&, bool forbidDecla…
80 bool acceptType(TType&, TIntermNode*& nodeList);
96 bool acceptStruct(TType&, TIntermNode*& nodeList);
97 …bool acceptStructDeclarationList(TTypeList*&, TIntermNode*& nodeList, TVector<TFunctionDeclarator>…
98 … bool acceptMemberFunctionDefinition(TIntermNode*& nodeList, const TType&, TString& memberName,
102 …bool acceptFunctionDefinition(TFunctionDeclarator&, TIntermNode*& nodeList, TVector<HlslToken>* de…
103 bool acceptFunctionBody(TFunctionDeclarator& declarator, TIntermNode*& nodeList);
DhlslGrammar.cpp154 bool HlslGrammar::acceptDeclarationList(TIntermNode*& nodeList) in acceptDeclarationList() argument
165 if (! acceptDeclaration(nodeList)) { in acceptDeclarationList()
332 bool HlslGrammar::acceptDeclaration(TIntermNode*& nodeList) in acceptDeclaration() argument
346 if (!acceptDeclarationList(nodeList)) { in acceptDeclaration()
380 … if (! acceptFullySpecifiedType(declaredType, nodeList, declarator.attributes, forbidDeclarators)) in acceptDeclaration()
434 return acceptFunctionDefinition(declarator, nodeList, nullptr); in acceptDeclaration()
527 if (nodeList) in acceptDeclaration()
528 nodeList = intermediate.growAggregate(nodeList, initializers); in acceptDeclaration()
530 nodeList = initializers; in acceptDeclaration()
603 TIntermNode* nodeList = nullptr; in acceptFullySpecifiedType() local
[all …]
/aosp_15_r20/external/angle/third_party/glslang/src/glslang/HLSL/
H A DhlslGrammar.h75 …bool acceptFullySpecifiedType(TType&, TIntermNode*& nodeList, const TAttributes&, bool forbidDecla…
80 bool acceptType(TType&, TIntermNode*& nodeList);
96 bool acceptStruct(TType&, TIntermNode*& nodeList);
97 …bool acceptStructDeclarationList(TTypeList*&, TIntermNode*& nodeList, TVector<TFunctionDeclarator>…
98 … bool acceptMemberFunctionDefinition(TIntermNode*& nodeList, const TType&, TString& memberName,
102 …bool acceptFunctionDefinition(TFunctionDeclarator&, TIntermNode*& nodeList, TVector<HlslToken>* de…
103 bool acceptFunctionBody(TFunctionDeclarator& declarator, TIntermNode*& nodeList);
H A DhlslGrammar.cpp154 bool HlslGrammar::acceptDeclarationList(TIntermNode*& nodeList) in acceptDeclarationList() argument
165 if (! acceptDeclaration(nodeList)) { in acceptDeclarationList()
332 bool HlslGrammar::acceptDeclaration(TIntermNode*& nodeList) in acceptDeclaration() argument
346 if (!acceptDeclarationList(nodeList)) { in acceptDeclaration()
380 … if (! acceptFullySpecifiedType(declaredType, nodeList, declarator.attributes, forbidDeclarators)) in acceptDeclaration()
434 return acceptFunctionDefinition(declarator, nodeList, nullptr); in acceptDeclaration()
527 if (nodeList) in acceptDeclaration()
528 nodeList = intermediate.growAggregate(nodeList, initializers); in acceptDeclaration()
530 nodeList = initializers; in acceptDeclaration()
603 TIntermNode* nodeList = nullptr; in acceptFullySpecifiedType() local
[all …]
/aosp_15_r20/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/lexicalpreservation/changes/
H A DListRemovalChange.java22 NodeList<Node> nodeList = new NodeList<>(); in getValue() local
29 nodeList.setParentNode(node); in getValue()
30 nodeList.addAll(currentNodeList); in getValue()
31 nodeList.remove(index); in getValue()
32 return nodeList; in getValue()
/aosp_15_r20/packages/apps/ImsServiceEntitlement/src/com/android/imsserviceentitlement/utils/
DXmlDoc.java141 NodeList nodeList = doc.getElementsByTagName(NODE_CHARACTERISTIC); in parseXmlResponse() local
142 for (int i = 0; i < nodeList.getLength(); i++) { in parseXmlResponse()
143 NamedNodeMap map = nodeList.item(i).getAttributes(); in parseXmlResponse()
148 + nodeList.item(i).getNodeName() in parseXmlResponse()
152 Element element = (Element) nodeList.item(i); in parseXmlResponse()
175 private static Map<String, String> parseParams(NodeList nodeList) { in parseParams() argument
177 for (int i = 0; i < nodeList.getLength(); i++) { in parseParams()
178 Node node = nodeList.item(i); in parseParams()
/aosp_15_r20/external/javaparser/javaparser-core-testing/src/test/java/com/github/javaparser/ast/
H A DNodeListTest.java38 import static com.github.javaparser.ast.NodeList.nodeList;
251 final NodeList<Name> list = nodeList(new Name("a"), new Name("b"), new Name("c"));
264 final NodeList<Name> list = nodeList(new Name("abc"), new Name("bcd"), new Name("cde"));
271 final NodeList<Name> list = nodeList(new Name("abc"), new Name("bcd"), new Name("cde"));
280 final NodeList<Name> list = nodeList(new Name("abc"), new Name("bcd"), new Name("cde"));
290 final NodeList<Name> list = nodeList(new Name("abc"), n, new Name("cde"));
300 final NodeList<Name> list = nodeList(new Name("abc"), n, new Name("cde"));
310 final NodeList<Name> list = nodeList(abc, new Name("bcd"), new Name("cde"));
320 final NodeList<Name> list = nodeList(new Name("abc"), new Name("bcd"), cde);
/aosp_15_r20/out/soong/.intermediates/external/jsilver/jsilver/linux_glibc_common/javac/
Djsilver.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
/aosp_15_r20/prebuilts/devtools/tools/lib/
HDjsilver-1.0.0.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
/aosp_15_r20/out/soong/.intermediates/external/jsilver/jsilver/linux_glibc_common/local-javac-header/
Djsilver.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
/aosp_15_r20/frameworks/opt/setupwizard/tools/docs/
Djsilver.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/clearsilver/ org/ ...
/aosp_15_r20/external/cronet/third_party/icu/source/tools/ctestfw/
H A Dctest.c81 const TestNode** nodeList,
331 const TestNode** nodeList, in iterateTestsWithLevel() argument
350 nodeList[depth++] = root; in iterateTestsWithLevel()
356 strcat(pathToFunction, nodeList[i]->name); in iterateTestsWithLevel()
359 strcat(pathToFunction, nodeList[i]->name); /* including 'root' */ in iterateTestsWithLevel()
442 log_testinfo("---%s%c\n",pathToFunction, nodeList[i]->test?' ':TEST_SEPARATOR ); in iterateTestsWithLevel()
456 iterateTestsWithLevel ( root->child, depth, nodeList, mode ); in iterateTestsWithLevel()
488 iterateTestsWithLevel ( root->sibling, depth, nodeList, mode ); in iterateTestsWithLevel()
498 const TestNode *nodeList[MAXTESTS]; in showTests() local
503 iterateTestsWithLevel ( root, 0, nodeList, SHOWTESTS ); in showTests()
[all …]
/aosp_15_r20/external/jsoup/src/main/java/org/jsoup/helper/
H A DW3CDom.java283 NodeList nodeList; in selectXpath() local
292nodeList = (NodeList) expression.evaluate(contextNode, XPathConstants.NODESET); // love the strong… in selectXpath()
293 Validate.notNull(nodeList); in selectXpath()
298 return nodeList; in selectXpath()
308 …public <T extends org.jsoup.nodes.Node> List<T> sourceNodes(NodeList nodeList, Class<T> nodeType) { in sourceNodes() argument
309 Validate.notNull(nodeList); in sourceNodes()
311 List<T> nodes = new ArrayList<>(nodeList.getLength()); in sourceNodes()
313 for (int i = 0; i < nodeList.getLength(); i++) { in sourceNodes()
314 org.w3c.dom.Node node = nodeList.item(i); in sourceNodes()

12345678910>>...12