Home
last modified time | relevance | path

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

/external/dokka/core/src/main/kotlin/Kotlin/
DContentBuilder.kt26 val nodeStack = ArrayDeque<ContentBlock>() in buildContentTo() constant
27 nodeStack.push(target) in buildContentTo()
30 val parent = nodeStack.peek() in buildContentTo()
33 nodeStack.push(content) in buildContentTo()
35 parent.append(nodeStack.pop()) in buildContentTo()
100 if (nodeStack.peek() !is ContentHeading || node.parent?.children?.first() != node) { in buildContentTo()
105 if ((keepEol(nodeStack.peek()) && node.parent?.children?.last() != node) || in buildContentTo()
107 … (processingList(nodeStack.peek()) && node.previous?.type == MarkdownTokenTypes.EOL)) { in buildContentTo()
/external/deqp/framework/common/
DtcuCommandLine.cpp381 vector<CaseTreeNode*> nodeStack; in parseCaseTrie() local
388 nodeStack.push_back(root); in parseCaseTrie()
390 while (!nodeStack.empty()) in parseCaseTrie()
405 nodeStack.back()->addChild(newChild); in parseCaseTrie()
414 nodeStack.push_back(newChild); in parseCaseTrie()
424 nodeStack.pop_back(); in parseCaseTrie()
427 if (nodeStack.empty()) in parseCaseTrie()
449 vector<CaseTreeNode*> nodeStack; in parseCaseList() local
453 nodeStack.resize(8, DE_NULL); in parseCaseList()
455 nodeStack[0] = root; in parseCaseList()
[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);
/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/llvm-project/llvm/test/Analysis/MemorySSA/
Dphi-translation.ll432 %nodeStack = alloca [12 x i32], align 4
433 %0 = bitcast [12 x i32]* %nodeStack to i8*
447 ; CHECK-NEXT: %arrayidx = getelementptr inbounds [12 x i32], [12 x i32]* %nodeStack, i32 0, i32 %sub
453 %arrayidx = getelementptr inbounds [12 x i32], [12 x i32]* %nodeStack, i32 0, i32 %sub
465 %arrayidx10 = getelementptr inbounds [12 x i32], [12 x i32]* %nodeStack, i32 0, i32 %depth.1
488 ; CHECK-NEXT: %ptr.10 = getelementptr inbounds [12 x i32], [12 x i32]* %nodeStack, i32 0, i32 %inc
493 %nodeStack = alloca [12 x i32], align 4
505 %ptr.1 = getelementptr inbounds [12 x i32], [12 x i32]* %nodeStack, i32 0, i32 %depth.1
506 %ptr.2 = getelementptr inbounds [12 x i32], [12 x i32]* %nodeStack, i32 0, i32 %inc2
509 %ptr.10 = getelementptr inbounds [12 x i32], [12 x i32]* %nodeStack, i32 0, i32 %inc
[all …]
/external/llvm-project/llvm/test/Transforms/DeadStoreElimination/MSSA/
Dmultiblock-loop-carried-dependence.ll179 %nodeStack = alloca [12 x i32], align 4
180 %nodeStack.cast = bitcast [12 x i32]* %nodeStack to i8*
191 %ptr.1 = getelementptr inbounds [12 x i32], [12 x i32]* %nodeStack, i32 0, i32 %sub
197 %ptr.2 = getelementptr inbounds [12 x i32], [12 x i32]* %nodeStack, i32 0, i32 %depth.1
208 call void @llvm.lifetime.end.p0i8(i64 48, i8* nonnull %nodeStack.cast) #3
/external/angle/src/compiler/translator/TranslatorMetalDirect/
DIntermRebuild.cpp302 ConsList<TIntermNode *> &nodeStack; member
303 NodeStackGuard(ConsList<TIntermNode *> &nodeStack) in NodeStackGuard()
304 : oldNodeStack(nodeStack), nodeStack(nodeStack) in NodeStackGuard()
306 ~NodeStackGuard() { nodeStack = oldNodeStack; } in ~NodeStackGuard()
/external/angle/src/libANGLE/renderer/vulkan/
DCommandGraph.cpp1018 std::vector<CommandGraphNode *> nodeStack; in submitCommands() local
1037 nodeStack.push_back(topLevelNode); in submitCommands()
1039 while (!nodeStack.empty()) in submitCommands()
1041 CommandGraphNode *node = nodeStack.back(); in submitCommands()
1046 node->visitParents(&nodeStack); in submitCommands()
1051 nodeStack.pop_back(); in submitCommands()
1054 nodeStack.pop_back(); in submitCommands()
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/text/ttml/
DTtmlDecoder.java121 ArrayDeque<TtmlNode> nodeStack = new ArrayDeque<>(); in decode() local
128 @Nullable TtmlNode parent = nodeStack.peek(); in decode()
145 nodeStack.push(node); in decode()
161 Assertions.checkNotNull(nodeStack.peek()), globalStyles, regionMap, imageMap); in decode()
163 nodeStack.pop(); in decode()
/external/antlr/runtime/C/include/
Dantlr3commontreenodestream.h215 pANTLR3_STACK nodeStack; member