Home
last modified time | relevance | path

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

/third_party/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()
433 return acceptFunctionDefinition(declarator, nodeList, nullptr); in acceptDeclaration()
526 if (nodeList) in acceptDeclaration()
527 nodeList = intermediate.growAggregate(nodeList, initializers); in acceptDeclaration()
529 nodeList = initializers; in acceptDeclaration()
602 TIntermNode* nodeList = nullptr; in acceptFullySpecifiedType() local
[all …]
/third_party/typescript/tests/baselines/reference/
DtypedArrays-es6.types57 const nodeList = new NodeList();
58 >nodeList : NodeList
62 [...nodeList];
63 >[...nodeList] : Node[]
64 >...nodeList : Node
65 >nodeList : NodeList
DtypedArrays-es5.types57 const nodeList = new NodeList();
58 >nodeList : NodeList
62 [...nodeList];
63 >[...nodeList] : any[]
64 >...nodeList : any
65 >nodeList : NodeList
DtypedArrays-es6.js17 const nodeList = new NodeList(); constant
18 [...nodeList];
44 const nodeList = new NodeList(); constant
45 [...nodeList];
DtypedArrays-es5.symbols37 const nodeList = new NodeList();
38 >nodeList : Symbol(nodeList, Decl(typedArrays-es5.ts, 15, 5))
41 [...nodeList];
42 >nodeList : Symbol(nodeList, Decl(typedArrays-es5.ts, 15, 5))
DtypedArrays-es5.js17 const nodeList = new NodeList(); constant
18 [...nodeList];
55 var nodeList = new NodeList(); variable
56 __spreadArray([], nodeList, true);
DtypedArrays-es6.symbols37 const nodeList = new NodeList();
38 >nodeList : Symbol(nodeList, Decl(typedArrays-es6.ts, 15, 5))
41 [...nodeList];
42 >nodeList : Symbol(nodeList, Decl(typedArrays-es6.ts, 15, 5))
DtypedArrays-es5.errors.txt39 const nodeList = new NodeList();
40 [...nodeList];
/third_party/typescript/tests/arkTSTest/testcase/arkts-no-for-in/
Darkts-no-for-in-8-error.ets32 const nodeList: HTMLCollectionOf<HTMLDivElement> =
35 // Traverse the nodeList and print its innerText
36 for (let key in nodeList) {
37 console.log(nodeList[key].textContent);
/third_party/icu/icu4c/source/tools/ctestfw/
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 …]
/third_party/skia/third_party/externals/icu/source/tools/ctestfw/
Dctest.c80 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 …]
/third_party/typescript/tests/cases/compiler/
DtypedArrays-es5.ts18 const nodeList = new NodeList(); constant
19 [...nodeList];
DtypedArrays-es6.ts18 const nodeList = new NodeList(); constant
19 [...nodeList];
/third_party/mesa3d/src/nouveau/codegen/
Dnv50_ir_graph.cpp407 std::list<Node *> nodeList; in findLightestPathWeight() local
417 nodeList.push_front(t); in findLightestPathWeight()
424 for (std::list<Node *>::iterator n = nodeList.begin(); in findLightestPathWeight()
425 n != nodeList.end(); ++n) { in findLightestPathWeight()
430 n = nodeList.erase(n); in findLightestPathWeight()
/third_party/vk-gl-cts/external/openglcts/modules/common/
DglcShaderLibrary.cpp1104 vector<tcu::TestNode*> nodeList; in parse() local
1111 parseShaderCase(nodeList); in parse()
1113 parseShaderGroup(nodeList); in parse()
1122 return nodeList; in parse()
/third_party/vk-gl-cts/framework/opengl/
DgluShaderLibrary.cpp1611 vector<tcu::TestNode*> nodeList; in parse() local
1618 parseShaderCase(nodeList); in parse()
1620 parseShaderGroup(nodeList); in parse()
1622 parseImport(nodeList); in parse()
1631 return nodeList; in parse()
/third_party/typescript/src/testRunner/unittests/services/
DtextChanges.ts27 const nodeList = flattenNodes(node); constant
30 zipWith(nodeList, parsedNodeList, (left, right) => {