Home
last modified time | relevance | path

Searched refs:nodeStack (Results 1 – 7 of 7) sorted by relevance

/third_party/vk-gl-cts/framework/common/
DtcuCommandLine.cpp507 vector<CaseTreeNode*> nodeStack; in parseCaseTrie() local
514 nodeStack.push_back(root); in parseCaseTrie()
516 while (!nodeStack.empty()) in parseCaseTrie()
532 nodeStack.back()->addChild(newChild); in parseCaseTrie()
541 nodeStack.push_back(newChild); in parseCaseTrie()
551 nodeStack.pop_back(); in parseCaseTrie()
554 if (nodeStack.empty()) in parseCaseTrie()
572 static void parseSimpleCaseList (vector<CaseTreeNode*>& nodeStack, std::istream& in, bool reportDup… in parseSimpleCaseList() argument
589 if (!nodeStack[stackPos]->hasChild(hash)) in parseSimpleCaseList()
595 nodeStack[stackPos]->addChild(newChild); in parseSimpleCaseList()
[all …]
DtcuTestHierarchyIterator.cpp151 std::string TestHierarchyIterator::buildNodePath (const vector<NodeIter>& nodeStack) in buildNodePath() argument
154 for (size_t ndx = 1; ndx < nodeStack.size(); ndx++) in buildNodePath()
156 const NodeIter& iter = nodeStack[ndx]; in buildNodePath()
DtcuTestHierarchyIterator.hpp190 static std::string buildNodePath (const std::vector<NodeIter>& nodeStack);
/third_party/typescript/src/compiler/factory/
Dutilities.ts1025 …ate, TResult>, stackIndex: number, stateStack: BinaryExpressionState[], nodeStack: BinaryExpressio…
1034 …ate, TResult>, stackIndex: number, stateStack: BinaryExpressionState[], nodeStack: BinaryExpressio…
1037 … userStateStack[stackIndex] = machine.onEnter(nodeStack[stackIndex], prevUserState, outerState);
1048 …ate, TResult>, stackIndex: number, stateStack: BinaryExpressionState[], nodeStack: BinaryExpressio…
1052 …const nextNode = machine.onLeft(nodeStack[stackIndex].left, userStateStack[stackIndex], nodeStack[…
1054 checkCircularity(stackIndex, nodeStack, nextNode);
1055 return pushStack(stackIndex, stateStack, nodeStack, userStateStack, nextNode);
1066 …ate, TResult>, stackIndex: number, stateStack: BinaryExpressionState[], nodeStack: BinaryExpressio…
1070 …machine.onOperator(nodeStack[stackIndex].operatorToken, userStateStack[stackIndex], nodeStack[stac…
1080 …ate, TResult>, stackIndex: number, stateStack: BinaryExpressionState[], nodeStack: BinaryExpressio…
[all …]
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_util/
DIntermRebuild.cpp306 ConsList<TIntermNode *> &nodeStack; member
307 NodeStackGuard(ConsList<TIntermNode *> &nodeStack) in NodeStackGuard()
308 : oldNodeStack(nodeStack), nodeStack(nodeStack) in NodeStackGuard()
310 ~NodeStackGuard() { nodeStack = oldNodeStack; } in ~NodeStackGuard()
/third_party/typescript/lib/
Dtsc.js25168 …function enter(machine, stackIndex, stateStack, nodeStack, userStateStack, _resultHolder, outerSta… argument
25171 … userStateStack[stackIndex] = machine.onEnter(nodeStack[stackIndex], prevUserState, outerState);
25176 …function left(machine, stackIndex, stateStack, nodeStack, userStateStack, _resultHolder, _outerSta… argument
25180 …var nextNode = machine.onLeft(nodeStack[stackIndex].left, userStateStack[stackIndex], nodeStack[st…
25182 checkCircularity(stackIndex, nodeStack, nextNode);
25183 return pushStack(stackIndex, stateStack, nodeStack, userStateStack, nextNode);
25188 …function operator(machine, stackIndex, stateStack, nodeStack, userStateStack, _resultHolder, _oute… argument
25192 …machine.onOperator(nodeStack[stackIndex].operatorToken, userStateStack[stackIndex], nodeStack[stac…
25196 …function right(machine, stackIndex, stateStack, nodeStack, userStateStack, _resultHolder, _outerSt… argument
25200 …var nextNode = machine.onRight(nodeStack[stackIndex].right, userStateStack[stackIndex], nodeStack[…
[all …]
DtypingsInstaller.js31184 …function enter(machine, stackIndex, stateStack, nodeStack, userStateStack, _resultHolder, outerSta… argument
31187 … userStateStack[stackIndex] = machine.onEnter(nodeStack[stackIndex], prevUserState, outerState);
31198 …function left(machine, stackIndex, stateStack, nodeStack, userStateStack, _resultHolder, _outerSta… argument
31202 …var nextNode = machine.onLeft(nodeStack[stackIndex].left, userStateStack[stackIndex], nodeStack[st…
31204 checkCircularity(stackIndex, nodeStack, nextNode);
31205 return pushStack(stackIndex, stateStack, nodeStack, userStateStack, nextNode);
31216 …function operator(machine, stackIndex, stateStack, nodeStack, userStateStack, _resultHolder, _oute… argument
31220 …machine.onOperator(nodeStack[stackIndex].operatorToken, userStateStack[stackIndex], nodeStack[stac…
31230 …function right(machine, stackIndex, stateStack, nodeStack, userStateStack, _resultHolder, _outerSt… argument
31234 …var nextNode = machine.onRight(nodeStack[stackIndex].right, userStateStack[stackIndex], nodeStack[…
[all …]