Searched refs:NextNode (Results 1 – 5 of 5) sorted by relevance
| /openbsd-src/gnu/llvm/llvm/lib/Support/ |
| H A D | SuffixTree.cpp | 127 SuffixTreeNode *NextNode = Active.Node->Children[FirstChar]; in extend() local 129 unsigned SubstringLen = NextNode->size(); in extend() 138 Active.Node = NextNode; in extend() 147 if (Str[NextNode->StartIdx + Active.Len] == LastChar) { in extend() 175 insertInternalNode(Active.Node, NextNode->StartIdx, in extend() 176 NextNode->StartIdx + Active.Len - 1, FirstChar); in extend() 184 NextNode->StartIdx += Active.Len; in extend() 185 SplitNode->Children[Str[NextNode->StartIdx]] = NextNode; in extend()
|
| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | ASTDiagnostic.cpp | 608 unsigned NextNode = 0; member 789 for (i = Node.ChildNode; FlatTree[i].NextNode != 0; in AddNode() 790 i = FlatTree[i].NextNode) { in AddNode() 792 FlatTree[i].NextNode = NextFreeNode; in AddNode() 928 if (FlatTree[ReadNode].NextNode == 0) in AdvanceSibling() 931 ReadNode = FlatTree[ReadNode].NextNode; in AdvanceSibling() 937 return FlatTree[ReadNode].NextNode != 0; in HasNextSibling()
|
| /openbsd-src/gnu/llvm/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchersInternal.h | 1831 QualType NextNode = (Node.*TraverseFunction)(); 1832 if (NextNode.isNull()) 1834 return this->InnerMatcher.matches(DynTypedNode::create(NextNode), Finder, 1856 TypeLoc NextNode = (Node.*TraverseFunction)(); 1857 if (!NextNode) 1859 return this->InnerMatcher.matches(DynTypedNode::create(NextNode), Finder,
|
| H A D | ASTMatchers.h | 7483 const NestedNameSpecifier *NextNode = Node.getPrefix(); 7484 if (!NextNode) 7486 return InnerMatcher.matches(*NextNode, Finder, Builder); 7501 NestedNameSpecifierLoc NextNode = Node.getPrefix(); 7502 if (!NextNode) 7504 return InnerMatcher.matches(NextNode, Finder, Builder);
|
| /openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/ |
| H A D | BugReporter.cpp | 2778 const ExplodedNode *NextNode = ErrorNode->getFirstPred(); in generateVisitorsDiagnostics() local 2779 while (NextNode) { in generateVisitorsDiagnostics() 2791 const ExplodedNode *Pred = NextNode->getFirstPred(); in generateVisitorsDiagnostics() 2810 auto P = V->VisitNode(NextNode, BRC, *R); in generateVisitorsDiagnostics() 2812 (*Notes)[NextNode].push_back(std::move(P)); in generateVisitorsDiagnostics() 2818 NextNode = Pred; in generateVisitorsDiagnostics()
|