Searched refs:nodeStack (Results 1 – 7 of 7) sorted by relevance
362 vector<CaseTreeNode*> nodeStack; in parseCaseTrie() local369 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() local434 nodeStack.resize(8, DE_NULL); in parseCaseList()436 nodeStack[0] = root; in parseCaseList()[all …]
147 std::string TestHierarchyIterator::buildNodePath (const vector<NodeIter>& nodeStack) in buildNodePath() argument150 for (size_t ndx = 1; ndx < nodeStack.size(); ndx++) in buildNodePath()152 const NodeIter& iter = nodeStack[ndx]; in buildNodePath()
190 static std::string buildNodePath (const std::vector<NodeIter>& nodeStack);
230 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()
41 @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];
46 NSMutableArray *nodeStack; variable64 @property (retain, getter=getNodeStack, setter=setNodeStack:) NSMutableArray *nodeStack;
215 pANTLR3_STACK nodeStack; member