Home
last modified time | relevance | path

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

/external/deqp/framework/common/
DtcuCommandLine.cpp362 vector<CaseTreeNode*> nodeStack; in parseCaseTrie() local
369 nodeStack.push_back(root); in parseCaseTrie()
371 while (!nodeStack.empty()) in parseCaseTrie()
386 nodeStack.back()->addChild(newChild); in parseCaseTrie()
395 nodeStack.push_back(newChild); in parseCaseTrie()
405 nodeStack.pop_back(); in parseCaseTrie()
408 if (nodeStack.empty()) in parseCaseTrie()
430 vector<CaseTreeNode*> nodeStack; in parseCaseList() local
434 nodeStack.resize(8, DE_NULL); in parseCaseList()
436 nodeStack[0] = root; in parseCaseList()
[all …]
DtcuTestHierarchyIterator.cpp147 std::string TestHierarchyIterator::buildNodePath (const vector<NodeIter>& nodeStack) in buildNodePath() argument
150 for (size_t ndx = 1; ndx < nodeStack.size(); ndx++) in buildNodePath()
152 const NodeIter& iter = nodeStack[ndx]; in buildNodePath()
DtcuTestHierarchyIterator.hpp190 static std::string buildNodePath (const std::vector<NodeIter>& nodeStack);
/external/antlr/runtime/C/src/
Dantlr3commontreenodestream.c230 stream->nodeStack = inStream->nodeStack; in antlr3CommonTreeNodeStreamNewStream()
372 stream->nodeStack = antlr3StackNew(INITIAL_CALL_STACK_SIZE); in antlr3CommonTreeNodeStreamNew()
431 if (ctns->nodeStack != NULL) in antlr3CommonTreeNodeStreamFree()
433 ctns->nodeStack->free(ctns->nodeStack); in antlr3CommonTreeNodeStreamFree()
541 if (ctns->nodeStack != NULL) in reset()
543 ctns->nodeStack->free(ctns->nodeStack); in reset()
544 ctns->nodeStack = antlr3StackNew(INITIAL_CALL_STACK_SIZE); in reset()
956 ctns->nodeStack->push(ctns->nodeStack, ANTLR3_FUNC_PTR(ctns->p), NULL); // Save current index in push()
965 retVal = ANTLR3_UINT32_CAST(ctns->nodeStack->pop(ctns->nodeStack)); in pop()
/external/antlr/runtime/ObjC/Framework/
DUnbufferedCommonTreeNodeStream.m41 @synthesize nodeStack;
64 nodeStack = [[NSMutableArray arrayWithCapacity:5] retain];
80 [nodeStack release]; nodeStack = nil;
95 [nodeStack removeAllObjects];
204 [state setNodeStackSize:[nodeStack count]];
235 …[nodeStack removeObjectsInRange:NSMakeRange([state nodeStackSize], [nodeStack count]-[state nodeSt…
361 [nodeStack addObject:currentNode];
378 currentNode = (CommonTree *)[nodeStack lastObject];
379 [nodeStack removeLastObject];
DUnbufferedCommonTreeNodeStream.h46 NSMutableArray *nodeStack; variable
64 @property (retain, getter=getNodeStack, setter=setNodeStack:) NSMutableArray *nodeStack;
/external/antlr/runtime/C/include/
Dantlr3commontreenodestream.h215 pANTLR3_STACK nodeStack; member