/external/jsilver/src/com/google/clearsilver/jsilver/syntax/parser/ |
D | Parser.java | 19 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 …]
|
/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() 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() 162 NodeList nodeList; in calculatedSyntaxModelForNode() local [all …]
|
D | LexicalPreservingPrinter.java | 470 private static ObservableProperty findNodeListName(NodeList nodeList) { 471 Node parent = nodeList.getParentNodeForChildren(); 480 if (result == nodeList) { 493 if (raw.isPresent() && raw.get() == nodeList) { 505 …throw new IllegalArgumentException("Cannot find list name of NodeList of size " + nodeList.size());
|
/external/deqp-deps/glslang/hlsl/ |
D | hlslGrammar.h | 74 …bool acceptFullySpecifiedType(TType&, TIntermNode*& nodeList, const TAttributes&, bool forbidDecla… 78 bool acceptType(TType&, TIntermNode*& nodeList); 94 bool acceptStruct(TType&, TIntermNode*& nodeList); 95 …bool acceptStructDeclarationList(TTypeList*&, TIntermNode*& nodeList, TVector<TFunctionDeclarator>… 96 … bool acceptMemberFunctionDefinition(TIntermNode*& nodeList, const TType&, TString& memberName, 100 …bool acceptFunctionDefinition(TFunctionDeclarator&, TIntermNode*& nodeList, TVector<HlslToken>* de… 101 bool acceptFunctionBody(TFunctionDeclarator& declarator, TIntermNode*& nodeList);
|
D | hlslGrammar.cpp | 153 bool HlslGrammar::acceptDeclarationList(TIntermNode*& nodeList) in acceptDeclarationList() argument 164 if (! acceptDeclaration(nodeList)) in acceptDeclarationList() 329 bool HlslGrammar::acceptDeclaration(TIntermNode*& nodeList) in acceptDeclaration() argument 343 if (!acceptDeclarationList(nodeList)) { in acceptDeclaration() 377 … if (! acceptFullySpecifiedType(declaredType, nodeList, declarator.attributes, forbidDeclarators)) in acceptDeclaration() 420 return acceptFunctionDefinition(declarator, nodeList, nullptr); in acceptDeclaration() 512 if (nodeList) in acceptDeclaration() 513 nodeList = intermediate.growAggregate(nodeList, initializers); in acceptDeclaration() 515 nodeList = initializers; in acceptDeclaration() 587 TIntermNode* nodeList = nullptr; in acceptFullySpecifiedType() local [all …]
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/concretesyntaxmodel/ |
D | CsmList.java | 79 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()
|
/external/cldr/tools/java/org/unicode/cldr/util/ |
D | NodeListIterator.java | 21 private NodeList nodeList; field in NodeListIterator 29 nodeList = aNodeList; in NodeListIterator() 34 return (currentPos < nodeList.getLength()); in hasNext() 39 return nodeList.item(currentPos++); in next()
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/ |
D | NodeList.java | 99 public static <X extends Node> NodeList<X> nodeList(X... nodes) { in nodeList() method in NodeList 100 final NodeList<X> nodeList = new NodeList<>(); in nodeList() local 101 Collections.addAll(nodeList, nodes); in nodeList() 102 return nodeList; in nodeList() 105 public static <X extends Node> NodeList<X> nodeList(Collection<X> nodes) { in nodeList() method in NodeList 106 final NodeList<X> nodeList = new NodeList<>(); in nodeList() local 107 nodeList.addAll(nodes); in nodeList() 108 return nodeList; in nodeList() 111 public static <X extends Node> NodeList<X> nodeList(NodeList<X> nodes) { in nodeList() method in NodeList 112 final NodeList<X> nodeList = new NodeList<>(); in nodeList() local [all …]
|
D | Node.java | 583 NodeList<?> nodeList = (NodeList<?>) property.getValue(this); in registerForSubtree() local 584 if (nodeList != null) in registerForSubtree() 585 nodeList.register(observer); in registerForSubtree()
|
/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 28 nodeList.addAll(currentNodeList); in getValue() 29 nodeList.remove(index); in getValue() 30 return nodeList; in getValue()
|
D | ListAdditionChange.java | 24 NodeList<Node> nodeList = new NodeList<>(); in getValue() local 30 nodeList.addAll(currentNodeList); in getValue() 31 nodeList.add(index, nodeAdded); in getValue() 32 return nodeList; in getValue()
|
D | ListReplacementChange.java | 27 NodeList nodeList = new NodeList(); in getValue() local 37 nodeList.addAll(currentNodeList); in getValue() 38 nodeList.set(index, newValue); in getValue() 39 return nodeList; in getValue()
|
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/ |
D | NodeListTest.java | 39 import static com.github.javaparser.ast.NodeList.nodeList; 254 final NodeList<Name> list = nodeList(new Name("a"), new Name("b"), new Name("c")); 267 final NodeList<Name> list = nodeList(new Name("abc"), new Name("bcd"), new Name("cde")); 274 final NodeList<Name> list = nodeList(new Name("abc"), new Name("bcd"), new Name("cde")); 283 final NodeList<Name> list = nodeList(new Name("abc"), new Name("bcd"), new Name("cde")); 293 final NodeList<Name> list = nodeList(new Name("abc"), n, new Name("cde")); 303 final NodeList<Name> list = nodeList(new Name("abc"), n, new Name("cde")); 313 final NodeList<Name> list = nodeList(abc, new Name("bcd"), new Name("cde")); 323 final NodeList<Name> list = nodeList(new Name("abc"), new Name("bcd"), cde);
|
/external/apache-xml/src/main/java/org/apache/xpath/objects/ |
D | XNodeSetForDOM.java | 61 public XNodeSetForDOM(NodeList nodeList, XPathContext xctxt) in XNodeSetForDOM() argument 64 m_origObj = nodeList; in XNodeSetForDOM() 70 org.apache.xpath.NodeSetDTM nsdtm=new org.apache.xpath.NodeSetDTM(nodeList, xctxt); in XNodeSetForDOM()
|
/external/icu/icu4c/source/tools/ctestfw/ |
D | ctest.c | 80 const TestNode** nodeList, 329 const TestNode** nodeList, in iterateTestsWithLevel() argument 348 nodeList[depth++] = root; in iterateTestsWithLevel() 354 strcat(pathToFunction, nodeList[i]->name); in iterateTestsWithLevel() 357 strcat(pathToFunction, nodeList[i]->name); /* including 'root' */ in iterateTestsWithLevel() 440 log_testinfo("---%s%c\n",pathToFunction, nodeList[i]->test?' ':TEST_SEPARATOR ); in iterateTestsWithLevel() 454 iterateTestsWithLevel ( root->child, depth, nodeList, mode ); in iterateTestsWithLevel() 486 iterateTestsWithLevel ( root->sibling, depth, nodeList, mode ); in iterateTestsWithLevel() 496 const TestNode *nodeList[MAXTESTS]; in showTests() local 501 iterateTestsWithLevel ( root, 0, nodeList, SHOWTESTS ); in showTests() [all …]
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/expr/ |
D | VariableDeclarationExpr.java | 43 import static com.github.javaparser.ast.NodeList.nodeList; 75 …this(null, EnumSet.noneOf(Modifier.class), new NodeList<>(), nodeList(new VariableDeclarator(type,… in VariableDeclarationExpr() 79 this(null, EnumSet.noneOf(Modifier.class), new NodeList<>(), nodeList(var)); in VariableDeclarationExpr() 83 ….toCollection(() -> EnumSet.noneOf(Modifier.class))), new NodeList<>(), nodeList(new VariableDecla… in VariableDeclarationExpr() 87 …t(Collectors.toCollection(() -> EnumSet.noneOf(Modifier.class))), new NodeList<>(), nodeList(var)); in VariableDeclarationExpr()
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/nodeTypes/ |
D | NodeWithTypeArguments.java | 31 import static com.github.javaparser.ast.NodeList.nodeList; 81 return setTypeArguments(nodeList(typeArguments)); in setTypeArguments()
|
D | NodeWithStatements.java | 104 default N copyStatements(NodeList<Statement> nodeList) { in copyStatements() argument 105 for (Statement n : nodeList) { in copyStatements()
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
D | DTMNodeProxy.java | 752 NodeList nodeList = retNode.getChildNodes(); in getElementsByTagName() local 753 for (int i = 0; i < nodeList.getLength(); i++) in getElementsByTagName() 755 traverseChildren(listVector, nodeList.item(i), tagname, in getElementsByTagName() 800 NodeList nodeList = tempNode.getChildNodes(); in traverseChildren() local 801 for (int i = 0; i < nodeList.getLength(); i++) in traverseChildren() 803 traverseChildren(listVector, nodeList.item(i), tagname, in traverseChildren() 877 NodeList nodeList = retNode.getChildNodes(); in getElementsByTagNameNS() local 878 for(int i = 0; i < nodeList.getLength(); i++) in getElementsByTagNameNS() 880 …traverseChildren(listVector, nodeList.item(i), namespaceURI, localName, isNamespaceURIWildCard, is… in getElementsByTagNameNS()
|
/external/mesa3d/src/gallium/drivers/nouveau/codegen/ |
D | nv50_ir_graph.cpp | 412 std::list<Node *> nodeList; in findLightestPathWeight() local 422 nodeList.push_front(t); in findLightestPathWeight() 429 for (std::list<Node *>::iterator n = nodeList.begin(); in findLightestPathWeight() 430 n != nodeList.end(); ++n) { in findLightestPathWeight() 435 n = nodeList.erase(n); in findLightestPathWeight()
|
/external/apache-xml/src/main/java/org/apache/xpath/ |
D | NodeSetDTM.java | 160 public NodeSetDTM(NodeList nodeList, XPathContext xctxt) in NodeSetDTM() argument 167 int n = nodeList.getLength(); in NodeSetDTM() 170 Node node = nodeList.item(i); in NodeSetDTM()
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/type/ |
D | ArrayType.java | 41 import static com.github.javaparser.ast.NodeList.nodeList; 81 this(type, Origin.TYPE, nodeList(annotations)); in ArrayType()
|
/external/deqp/external/openglcts/modules/common/ |
D | glcShaderLibrary.cpp | 1098 vector<tcu::TestNode*> nodeList; in parse() local 1105 parseShaderCase(nodeList); in parse() 1107 parseShaderGroup(nodeList); in parse() 1116 return nodeList; in parse()
|
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/bdd/steps/ |
D | ManipulationSteps.java | 50 import static com.github.javaparser.ast.NodeList.nodeList; 137 compilationUnit.setTypes(nodeList(type)); in whenAClassCalledIsAddedToTheCompilationUnit()
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/body/ |
D | FieldDeclaration.java | 52 import static com.github.javaparser.ast.NodeList.nodeList; 82 this(null, modifiers, new NodeList<>(), nodeList(variable)); in FieldDeclaration()
|