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.cpp388 vector<CaseTreeNode*> nodeStack; in parseCaseTrie() local
395 nodeStack.push_back(root); in parseCaseTrie()
397 while (!nodeStack.empty()) in parseCaseTrie()
412 nodeStack.back()->addChild(newChild); in parseCaseTrie()
421 nodeStack.push_back(newChild); in parseCaseTrie()
431 nodeStack.pop_back(); in parseCaseTrie()
434 if (nodeStack.empty()) in parseCaseTrie()
452 static void parseSimpleCaseList (vector<CaseTreeNode*>& nodeStack, std::istream& in, bool reportDup… in parseSimpleCaseList() argument
468 if (!nodeStack[stackPos]->hasChild(curName)) in parseSimpleCaseList()
474 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/
DtypingsInstaller.js31143 …function enter(machine, stackIndex, stateStack, nodeStack, userStateStack, _resultHolder, outerSta… argument
31146 … userStateStack[stackIndex] = machine.onEnter(nodeStack[stackIndex], prevUserState, outerState);
31157 …function left(machine, stackIndex, stateStack, nodeStack, userStateStack, _resultHolder, _outerSta… argument
31161 …var nextNode = machine.onLeft(nodeStack[stackIndex].left, userStateStack[stackIndex], nodeStack[st…
31163 checkCircularity(stackIndex, nodeStack, nextNode);
31164 return pushStack(stackIndex, stateStack, nodeStack, userStateStack, nextNode);
31175 …function operator(machine, stackIndex, stateStack, nodeStack, userStateStack, _resultHolder, _oute… argument
31179 …machine.onOperator(nodeStack[stackIndex].operatorToken, userStateStack[stackIndex], nodeStack[stac…
31189 …function right(machine, stackIndex, stateStack, nodeStack, userStateStack, _resultHolder, _outerSt… argument
31193 …var nextNode = machine.onRight(nodeStack[stackIndex].right, userStateStack[stackIndex], nodeStack[…
[all …]
Dtsc.js25130 …function enter(machine, stackIndex, stateStack, nodeStack, userStateStack, _resultHolder, outerSta… argument
25133 … userStateStack[stackIndex] = machine.onEnter(nodeStack[stackIndex], prevUserState, outerState);
25138 …function left(machine, stackIndex, stateStack, nodeStack, userStateStack, _resultHolder, _outerSta… argument
25142 …var nextNode = machine.onLeft(nodeStack[stackIndex].left, userStateStack[stackIndex], nodeStack[st…
25144 checkCircularity(stackIndex, nodeStack, nextNode);
25145 return pushStack(stackIndex, stateStack, nodeStack, userStateStack, nextNode);
25150 …function operator(machine, stackIndex, stateStack, nodeStack, userStateStack, _resultHolder, _oute… argument
25154 …machine.onOperator(nodeStack[stackIndex].operatorToken, userStateStack[stackIndex], nodeStack[stac…
25158 …function right(machine, stackIndex, stateStack, nodeStack, userStateStack, _resultHolder, _outerSt… argument
25162 …var nextNode = machine.onRight(nodeStack[stackIndex].right, userStateStack[stackIndex], nodeStack[…
[all …]