/external/jsilver/src/com/google/clearsilver/jsilver/syntax/parser/ |
D | Parser.java | 19 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 …]
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/lexicalpreservation/ |
D | LexicalDifferenceCalculator.java | 89 …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()
|
D | LexicalPreservingPrinter.java | 575 private static ObservableProperty findNodeListName(NodeList nodeList) { in findNodeListName()
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/ |
D | NodeList.java | 100 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
|
D | Node.java | 607 NodeList<?> nodeList = (NodeList<?>) property.getValue(this); in registerForSubtree() local
|
/external/angle/third_party/vulkan-deps/glslang/src/glslang/HLSL/ |
D | hlslGrammar.cpp | 154 bool HlslGrammar::acceptDeclarationList(TIntermNode*& nodeList) in acceptDeclarationList() 332 bool HlslGrammar::acceptDeclaration(TIntermNode*& nodeList) in acceptDeclaration() 602 TIntermNode* nodeList = nullptr; in acceptFullySpecifiedType() local 605 bool HlslGrammar::acceptFullySpecifiedType(TType& type, TIntermNode*& nodeList, const TAttributes& … in acceptFullySpecifiedType() 1471 TIntermNode* nodeList = nullptr; in acceptType() local 1474 bool HlslGrammar::acceptType(TType& type, TIntermNode*& nodeList) in acceptType() 2383 bool HlslGrammar::acceptStruct(TType& type, TIntermNode*& nodeList) in acceptStruct() 2685 bool HlslGrammar::acceptStructDeclarationList(TTypeList*& typeList, TIntermNode*& nodeList, in acceptStructDeclarationList() 2789 bool HlslGrammar::acceptMemberFunctionDefinition(TIntermNode*& nodeList, const TType& type, TString… in acceptMemberFunctionDefinition() 2965 bool HlslGrammar::acceptFunctionDefinition(TFunctionDeclarator& declarator, TIntermNode*& nodeList, in acceptFunctionDefinition() [all …]
|
/external/deqp-deps/glslang/glslang/HLSL/ |
D | hlslGrammar.cpp | 154 bool HlslGrammar::acceptDeclarationList(TIntermNode*& nodeList) in acceptDeclarationList() 332 bool HlslGrammar::acceptDeclaration(TIntermNode*& nodeList) in acceptDeclaration() 602 TIntermNode* nodeList = nullptr; in acceptFullySpecifiedType() local 605 bool HlslGrammar::acceptFullySpecifiedType(TType& type, TIntermNode*& nodeList, const TAttributes& … in acceptFullySpecifiedType() 1471 TIntermNode* nodeList = nullptr; in acceptType() local 1474 bool HlslGrammar::acceptType(TType& type, TIntermNode*& nodeList) in acceptType() 2383 bool HlslGrammar::acceptStruct(TType& type, TIntermNode*& nodeList) in acceptStruct() 2685 bool HlslGrammar::acceptStructDeclarationList(TTypeList*& typeList, TIntermNode*& nodeList, in acceptStructDeclarationList() 2789 bool HlslGrammar::acceptMemberFunctionDefinition(TIntermNode*& nodeList, const TType& type, TString… in acceptMemberFunctionDefinition() 2965 bool HlslGrammar::acceptFunctionDefinition(TFunctionDeclarator& declarator, TIntermNode*& nodeList, in acceptFunctionDefinition() [all …]
|
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/util/ |
D | NodeListIterator.java | 21 private NodeList nodeList; field in NodeListIterator
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/lexicalpreservation/changes/ |
D | ListRemovalChange.java | 22 NodeList<Node> nodeList = new NodeList<>(); in getValue() local
|
D | ListAdditionChange.java | 24 NodeList<Node> nodeList = new NodeList<>(); in getValue() local
|
D | ListReplacementChange.java | 26 NodeList nodeList = new NodeList(); in getValue() local
|
/external/guava/guava-tests/test/com/google/common/graph/ |
D | GraphMutationTest.java | 62 ArrayList<Integer> nodeList = new ArrayList<>(graph.nodes()); in testGraphMutation() local
|
D | NetworkMutationTest.java | 63 ArrayList<Integer> nodeList = new ArrayList<>(network.nodes()); in testNetworkMutation() local
|
/external/guava/android/guava-tests/test/com/google/common/graph/ |
D | GraphMutationTest.java | 62 ArrayList<Integer> nodeList = new ArrayList<>(graph.nodes()); in testGraphMutation() local
|
D | NetworkMutationTest.java | 63 ArrayList<Integer> nodeList = new ArrayList<>(network.nodes()); in testNetworkMutation() local
|
/external/apache-xml/src/main/java/org/apache/xpath/objects/ |
D | XNodeSetForDOM.java | 61 public XNodeSetForDOM(NodeList nodeList, XPathContext xctxt) in XNodeSetForDOM()
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/concretesyntaxmodel/ |
D | CsmList.java | 79 NodeList nodeList = property.getValueAsMultipleReference(node); in prettyPrint() local
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/nodeTypes/ |
D | NodeWithStatements.java | 107 default N copyStatements(NodeList<Statement> nodeList) { in copyStatements()
|
/external/escapevelocity/src/main/java/com/google/escapevelocity/ |
D | Reparser.java | 149 ImmutableList.Builder<Node> nodeList = ImmutableList.builder(); in parseTo() local
|
/external/robolectric/plugins/maven-dependency-resolver/src/main/java/org/robolectric/internal/dependency/ |
D | MavenDependencyResolver.java | 158 NodeList nodeList = document.getElementsByTagName("localRepository"); in getLocalRepositoryFromSettings() local
|
/external/cronet/third_party/icu/source/tools/ctestfw/ |
D | ctest.c | 331 const TestNode** nodeList, in iterateTestsWithLevel() 498 const TestNode *nodeList[MAXTESTS]; in showTests() local 511 const TestNode *nodeList[MAXTESTS]; in runTests() local
|
/external/icu/icu4c/source/tools/ctestfw/ |
D | ctest.c | 355 const TestNode** nodeList, in iterateTestsWithLevel() 522 const TestNode *nodeList[MAXTESTS]; in showTests() local 535 const TestNode *nodeList[MAXTESTS]; in runTests() local
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
D | DTMNodeProxy.java | 752 NodeList nodeList = retNode.getChildNodes(); in getElementsByTagName() local 800 NodeList nodeList = tempNode.getChildNodes(); in traverseChildren() local 877 NodeList nodeList = retNode.getChildNodes(); in getElementsByTagNameNS() local
|
/external/mesa3d/src/gallium/drivers/nouveau/codegen/ |
D | nv50_ir_graph.cpp | 406 std::list<Node *> nodeList; in findLightestPathWeight() local
|
/external/apache-xml/src/main/java/org/apache/xpath/ |
D | NodeSetDTM.java | 160 public NodeSetDTM(NodeList nodeList, XPathContext xctxt) in NodeSetDTM()
|