| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Tooling/Refactoring/ |
| H A D | ASTSelection.h | 101 ArrayRef<SelectedASTNode::ReferenceType> getParents() { return Parents; } in getParents() 138 ArrayRef<SelectedASTNode::ReferenceType> Parents, in CodeRangeASTSelection() argument 140 : SelectedNode(SelectedNode), Parents(Parents.begin(), Parents.end()), in CodeRangeASTSelection() 147 llvm::SmallVector<SelectedASTNode::ReferenceType, 8> Parents; variable
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/ |
| H A D | ASTSelection.cpp | 252 llvm::SmallVector<SelectedASTNode::ReferenceType, 8> Parents; member 292 const Stmt *Parent = Parents[Parents.size() - 1].get().Node.get<Stmt>(); in canonicalize() 298 for (; (ParentIndex + 1) <= Parents.size() && isa<ImplicitCastExpr>(Parent); in canonicalize() 301 Parents[Parents.size() - ParentIndex - 1].get().Node.get<Stmt>(); in canonicalize() 309 Node = Parents[Parents.size() - ParentIndex]; in canonicalize() 311 Parents.pop_back(); in canonicalize() 397 return CodeRangeASTSelection(Selected.Node, Selected.Parents, in create() 408 Selected.Parents.push_back(Selected.Node); in create() 409 return CodeRangeASTSelection(Selected.Node, Selected.Parents, in create() 423 for (const auto &Parent : llvm::reverse(Parents)) { in isInFunctionLikeBodyOfCode() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/Rename/ |
| H A D | USRLocFinder.cpp | 372 auto Parents = Context.getParents(Loc); in VisitTypeLoc() local 374 if (!Parents.empty()) { in VisitTypeLoc() 379 if (const auto *NSL = Parents[0].get<NestedNameSpecifierLoc>()) { in VisitTypeLoc() 384 if (const auto *TL = Parents[0].get<TypeLoc>()) in VisitTypeLoc() 483 auto Parents = Context.getParents(Node); in getClosestAncestorDecl() local 485 if (Parents.size() != 1) in getClosestAncestorDecl() 487 if (ASTNodeKind::getFromNodeKind<Decl>().isBaseOf(Parents[0].getNodeKind())) in getClosestAncestorDecl() 488 return Parents[0].template get<Decl>(); in getClosestAncestorDecl() 489 return getClosestAncestorDecl(Parents[0]); in getClosestAncestorDecl() 495 auto Parents = Context.getParents(Loc); in getParentTypeLoc() local [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
| H A D | ParentMapContext.cpp | 26 void ParentMapContext::clear() { Parents.reset(); } in clear() 359 void addParent(MapNodeTy MapNode, MapTy *Parents) { in addParent() argument 373 auto &NodeOrVector = (*Parents)[MapNode]; in addParent() 405 MapTy *Parents) { in TraverseNode() argument 408 addParent(MapNode, Parents); in TraverseNode() 453 if (!Parents) in getParents() 456 Parents = std::make_unique<ParentMap>(ASTCtx); in getParents() 457 return Parents->getParents(getTraversalKind(), Node); in getParents()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | DIEHash.cpp | 85 SmallVector<const DIE *, 1> Parents; in addParentContext() local 88 Parents.push_back(Cur); in addParentContext() 96 for (SmallVectorImpl<const DIE *>::reverse_iterator I = Parents.rbegin(), in addParentContext() 97 E = Parents.rend(); in addParentContext()
|
| H A D | DwarfUnit.cpp | 661 SmallVector<const DIScope *, 1> Parents; in getParentContextString() local 663 Parents.push_back(Context); in getParentContextString() 674 for (const DIScope *Ctx : make_range(Parents.rbegin(), Parents.rend())) { in getParentContextString()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | TraversalChecker.cpp | 42 const ParentMap &Parents = C.getLocationContext()->getParentMap(); in checkBranchCondition() local 43 Parent = Parents.getParent(Condition); in checkBranchCondition()
|
| H A D | DeadStoresChecker.cpp | 139 ParentMap& Parents; member in __anon4ace36bc0211::DeadStoreObs 153 : cfg(cfg), Ctx(ctx), BR(br), Checker(checker), AC(ac), Parents(parents), in DeadStoreObs() 355 DeadStoreKind dsk = Parents.isConsumedExpr(B) in observeStmt() 366 const Stmt *parent = Parents.getParentIgnoreParenCasts(U); in observeStmt()
|
| /netbsd-src/external/apache2/llvm/dist/clang/utils/TableGen/ |
| H A D | ClangDiagnosticsEmitter.cpp | 71 const std::vector<Record*> &Parents = DiagGroupParents.getParents(Group); in getCategoryFromDiagGroup() local 72 for (unsigned i = 0, e = Parents.size(); i != e; ++i) { in getCategoryFromDiagGroup() 73 CatName = getCategoryFromDiagGroup(Parents[i], DiagGroupParents); in getCategoryFromDiagGroup() 302 const std::vector<Record*> &Parents = DiagGroupParents.getParents(Group); in isSubGroupOfGroup() local 303 for (unsigned i = 0, e = Parents.size(); i != e; ++i) in isSubGroupOfGroup() 304 if (isSubGroupOfGroup(Parents[i], GName)) in isSubGroupOfGroup() 347 const std::vector<Record*> &Parents = DiagGroupParents.getParents(Group); in markGroup() local 348 for (unsigned i = 0, e = Parents.size(); i != e; ++i) in markGroup() 349 markGroup(Parents[i]); in markGroup() 406 const std::vector<Record*> &Parents = DiagGroupParents.getParents(Group); in compute() local [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/ASTMatchers/ |
| H A D | ASTMatchFinder.cpp | 949 DynTypedNodeList Parents{ArrayRef<DynTypedNode>()}; // after loop: size != 1 in matchesAnyAncestorOf() local 969 Parents = ActiveASTContext->getParents(Node); in matchesAnyAncestorOf() 972 if (Parents.size() != 1) in matchesAnyAncestorOf() 976 Node = *Parents.begin(); in matchesAnyAncestorOf() 985 if (Parents.empty()) { in matchesAnyAncestorOf() 1004 assert(Parents.size() > 1); in matchesAnyAncestorOf() 1008 std::deque<DynTypedNode> Queue(Parents.begin(), Parents.end()); in matchesAnyAncestorOf()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| H A D | ParentMapContext.h | 72 std::unique_ptr<ParentMap> Parents; variable
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/ASTDiff/ |
| H A D | ASTDiff.cpp | 387 const auto &Parents = AST.getParents(*S); in getEnclosingDeclContext() local 388 if (Parents.empty()) in getEnclosingDeclContext() 390 const auto &P = Parents[0]; in getEnclosingDeclContext()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchers.h | 7565 const auto &Parents = Finder->getASTContext().getParents(Node); in AST_MATCHER_P() local 7567 llvm::SmallVector<DynTypedNode, 8> Stack(Parents.begin(), Parents.end()); in AST_MATCHER_P() 7616 const auto &Parents = Finder->getASTContext().getParents(Node); in AST_MATCHER_P() local 7618 llvm::SmallVector<DynTypedNode, 8> Stack(Parents.begin(), Parents.end()); in AST_MATCHER_P()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/ |
| H A D | traits.d | 4196 template walkThru(Parents...) 4198 static if (Parents.length > 0) 4200 CollectOverloads!(Parents[0]), 4201 walkThru!(Parents[1 .. $]) 4207 static if (is(Node Parents == super)) 4208 alias CollectOverloads = AliasSeq!(inSight, walkThru!Parents);
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/ |
| H A D | traits.d | 4535 template walkThru(Parents...) 4537 static if (Parents.length > 0) 4539 CollectOverloads!(Parents[0]), 4540 walkThru!(Parents[1 .. $]) 4546 static if (is(Node Parents == super)) 4547 alias CollectOverloads = AliasSeq!(inSight, walkThru!Parents);
|
| /netbsd-src/external/gpl3/binutils.old/dist/gprof/ |
| H A D | gprof.texi | 165 Parents that are not themselves profiled will have the time of 683 Parents or children identified via this heuristic
|
| H A D | gprof.info | 498 library routines are typically _not_ found by this option. Parents
|
| /netbsd-src/external/gpl3/binutils/dist/gprof/ |
| H A D | gprof.texi | 165 Parents that are not themselves profiled will have the time of 686 Parents or children identified via this heuristic
|
| H A D | gprof.info | 501 library routines are typically _not_ found by this option. Parents
|
| /netbsd-src/games/fortune/datfiles/ |
| H A D | fortunes2-o.real | 9999 A: Parents.
|
| H A D | fortunes2 | 35045 Parents often talk about the younger generation as if they
|