Home
last modified time | relevance | path

Searched defs:nodeList (Results 1 – 25 of 165) sorted by relevance

1234567

/aosp_15_r20/external/jsilver/src/com/google/clearsilver/jsilver/syntax/parser/
H A DParser.java19 protected ArrayList nodeList; field in Parser
875 @SuppressWarnings("hiding") ArrayList nodeList = new ArrayList(); in new0() local
892 @SuppressWarnings("hiding") ArrayList nodeList = new ArrayList(); in new1() local
906 @SuppressWarnings("hiding") ArrayList nodeList = new ArrayList(); in new2() local
941 @SuppressWarnings("hiding") ArrayList nodeList = new ArrayList(); in new3() local
961 @SuppressWarnings("hiding") ArrayList nodeList = new ArrayList(); in new4() local
990 @SuppressWarnings("hiding") ArrayList nodeList = new ArrayList(); in new5() local
1021 @SuppressWarnings("hiding") ArrayList nodeList = new ArrayList(); in new6() local
1067 @SuppressWarnings("hiding") ArrayList nodeList = new ArrayList(); in new7() local
1113 @SuppressWarnings("hiding") ArrayList nodeList = new ArrayList(); in new8() local
[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()
97 …culateListAdditionDifference(ObservableProperty observableProperty, NodeList nodeList, int index, … in calculateListAdditionDifference()
105 …ateListReplacementDifference(ObservableProperty observableProperty, NodeList nodeList, int index, … in calculateListReplacementDifference()
163 NodeList nodeList; in calculatedSyntaxModelForNode() local
290 …rListRemoval(CsmElement csm, ObservableProperty observableProperty, NodeList nodeList, int index) { in calculatedSyntaxModelAfterListRemoval()
298 …ListAddition(CsmElement csm, ObservableProperty observableProperty, NodeList nodeList, int index, … in calculatedSyntaxModelAfterListAddition()
312 NodeList nodeList = (NodeList)rawValue; in calculatedSyntaxModelAfterListAddition() local
323 NodeList nodeList = (NodeList)rawValue; in calculatedSyntaxModelAfterListRemoval() local
328 …tReplacement(CsmElement csm, ObservableProperty observableProperty, NodeList nodeList, int index, … in calculatedSyntaxModelAfterListReplacement()
/aosp_15_r20/external/deqp-deps/glslang/glslang/HLSL/
DhlslGrammar.cpp154 bool HlslGrammar::acceptDeclarationList(TIntermNode*& nodeList) in acceptDeclarationList()
332 bool HlslGrammar::acceptDeclaration(TIntermNode*& nodeList) in acceptDeclaration()
603 TIntermNode* nodeList = nullptr; in acceptFullySpecifiedType() local
606 bool HlslGrammar::acceptFullySpecifiedType(TType& type, TIntermNode*& nodeList, const TAttributes& … in acceptFullySpecifiedType()
1472 TIntermNode* nodeList = nullptr; in acceptType() local
1475 bool HlslGrammar::acceptType(TType& type, TIntermNode*& nodeList) in acceptType()
2384 bool HlslGrammar::acceptStruct(TType& type, TIntermNode*& nodeList) in acceptStruct()
2686 bool HlslGrammar::acceptStructDeclarationList(TTypeList*& typeList, TIntermNode*& nodeList, in acceptStructDeclarationList()
2790 bool HlslGrammar::acceptMemberFunctionDefinition(TIntermNode*& nodeList, const TType& type, TString… in acceptMemberFunctionDefinition()
2966 bool HlslGrammar::acceptFunctionDefinition(TFunctionDeclarator& declarator, TIntermNode*& nodeList, in acceptFunctionDefinition()
[all …]
/aosp_15_r20/external/angle/third_party/glslang/src/glslang/HLSL/
H A DhlslGrammar.cpp154 bool HlslGrammar::acceptDeclarationList(TIntermNode*& nodeList) in acceptDeclarationList()
332 bool HlslGrammar::acceptDeclaration(TIntermNode*& nodeList) in acceptDeclaration()
603 TIntermNode* nodeList = nullptr; in acceptFullySpecifiedType() local
606 bool HlslGrammar::acceptFullySpecifiedType(TType& type, TIntermNode*& nodeList, const TAttributes& … in acceptFullySpecifiedType()
1472 TIntermNode* nodeList = nullptr; in acceptType() local
1475 bool HlslGrammar::acceptType(TType& type, TIntermNode*& nodeList) in acceptType()
2384 bool HlslGrammar::acceptStruct(TType& type, TIntermNode*& nodeList) in acceptStruct()
2686 bool HlslGrammar::acceptStructDeclarationList(TTypeList*& typeList, TIntermNode*& nodeList, in acceptStructDeclarationList()
2790 bool HlslGrammar::acceptMemberFunctionDefinition(TIntermNode*& nodeList, const TType& type, TString… in acceptMemberFunctionDefinition()
2966 bool HlslGrammar::acceptFunctionDefinition(TFunctionDeclarator& declarator, TIntermNode*& nodeList, in acceptFunctionDefinition()
[all …]
/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
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
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
/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()
33 recursivelyGather((ViewGroup) view, nodeList); in recursivelyGather() local
52 public static void requestLayoutForAllNodes(List<View> nodeList) { in requestLayoutForAllNodes()
/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()
309 hidl_vec<IOmx::ComponentInfo> nodeList; in TEST_P() local
426 hidl_vec<IOmx::ComponentInfo> nodeList; in TEST_P() local
/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
250 NodeList nodeList = xpath(dom, "//body");// no namespace in xhtmlNoNamespace() local
265 NodeList nodeList = xpath(dom, "//body");// no ns, so needs no prefix in canDisableNamespaces() local
/aosp_15_r20/external/snakeyaml/src/test/java/org/yaml/snakeyaml/comment/
H A DComposerWithCommentEnabledTest.java117 private void printNodeList(List<Node> nodeList) { in printNodeList()
134 List<Node> nodeList = new ArrayList<>(); in getNodeList() local
141 private void assertNodesEqual(String[] expected, List<Node> nodeList) { in assertNodesEqual()
/aosp_15_r20/frameworks/av/media/libstagefright/omx/1.0/
H A DOmxStore.cpp48 const hidl_vec<IOmx::ComponentInfo> &nodeList) { in OmxStore()
102 hidl_vec<NodeInfo>& nodeList = role.nodes; in OmxStore() local
/aosp_15_r20/packages/apps/ImsServiceEntitlement/src/com/android/imsserviceentitlement/utils/
DXmlDoc.java141 NodeList nodeList = doc.getElementsByTagName(NODE_CHARACTERISTIC); in parseXmlResponse() local
175 private static Map<String, String> parseParams(NodeList nodeList) { in parseParams()
/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.c331 const TestNode** nodeList, in iterateTestsWithLevel()
498 const TestNode *nodeList[MAXTESTS]; in showTests() local
511 const TestNode *nodeList[MAXTESTS]; in runTests() local
/aosp_15_r20/external/jsoup/src/main/java/org/jsoup/helper/
H A DW3CDom.java283 NodeList nodeList; in selectXpath() local
308 …public <T extends org.jsoup.nodes.Node> List<T> sourceNodes(NodeList nodeList, Class<T> nodeType) { in sourceNodes()
/aosp_15_r20/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMNodeProxy.java752 NodeList nodeList = retNode.getChildNodes(); in getElementsByTagName() local
800 NodeList nodeList = tempNode.getChildNodes(); in traverseChildren() local
877 NodeList nodeList = retNode.getChildNodes(); in getElementsByTagNameNS() local
/aosp_15_r20/external/icu/icu4c/source/tools/ctestfw/
H A Dctest.c355 const TestNode** nodeList, in iterateTestsWithLevel()
522 const TestNode *nodeList[MAXTESTS]; in showTests() local
535 const TestNode *nodeList[MAXTESTS]; in runTests() local
/aosp_15_r20/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/util/
H A DNodeListIterator.java17 private NodeList nodeList; field in NodeListIterator
/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
H A DListAdditionChange.java24 NodeList<Node> nodeList = new NodeList<>(); in getValue() local
H A DListReplacementChange.java26 NodeList nodeList = new NodeList(); in getValue() local
/aosp_15_r20/libcore/dom/src/test/java/org/w3c/domts/level1/core/
H A Dhc_nodecommentnodeattributes.java67 NodeList nodeList; in runTest() local
/aosp_15_r20/external/guava/guava-tests/test/com/google/common/graph/
H A DGraphMutationTest.java62 ArrayList<Integer> nodeList = new ArrayList<>(graph.nodes()); in testGraphMutation() local

1234567