Searched refs:NextNode (Results 1 – 7 of 7) sorted by relevance
| /llvm-project-15.0.7/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()
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/ |
| H A D | SemanticSelection.cpp | 101 for (const auto *NextNode = T->getFirstChild(); NextNode; in collectFoldingRanges() local 102 NextNode = NextNode->getNextSibling()) in collectFoldingRanges() 103 Nodes.push(NextNode); in collectFoldingRanges()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/misc/ |
| H A D | UnusedParametersCheck.cpp | 44 const T *NextNode) { in removeNode() argument 45 if (NextNode) in removeNode() 47 NextNode->getBeginLoc()); in removeNode()
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | ASTDiagnostic.cpp | 609 unsigned NextNode = 0; member 790 for (i = Node.ChildNode; FlatTree[i].NextNode != 0; in AddNode() 791 i = FlatTree[i].NextNode) { in AddNode() 793 FlatTree[i].NextNode = NextFreeNode; in AddNode() 929 if (FlatTree[ReadNode].NextNode == 0) in AdvanceSibling() 932 ReadNode = FlatTree[ReadNode].NextNode; in AdvanceSibling() 938 return FlatTree[ReadNode].NextNode != 0; in HasNextSibling()
|
| /llvm-project-15.0.7/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchersInternal.h | 1847 QualType NextNode = (Node.*TraverseFunction)(); 1848 if (NextNode.isNull()) 1850 return this->InnerMatcher.matches(DynTypedNode::create(NextNode), Finder, 1872 TypeLoc NextNode = (Node.*TraverseFunction)(); 1873 if (!NextNode) 1875 return this->InnerMatcher.matches(DynTypedNode::create(NextNode), Finder,
|
| H A D | ASTMatchers.h | 7486 const NestedNameSpecifier *NextNode = Node.getPrefix(); 7487 if (!NextNode) 7489 return InnerMatcher.matches(*NextNode, Finder, Builder); 7504 NestedNameSpecifierLoc NextNode = Node.getPrefix(); 7505 if (!NextNode) 7507 return InnerMatcher.matches(NextNode, Finder, Builder);
|
| /llvm-project-15.0.7/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()
|