| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchers.h | 245 auto &SourceManager = Finder->getASTContext().getSourceManager(); in AST_POLYMORPHIC_MATCHER() 266 auto &SourceManager = Finder->getASTContext().getSourceManager(); in AST_POLYMORPHIC_MATCHER() 293 auto &SourceManager = Finder->getASTContext().getSourceManager(); in AST_POLYMORPHIC_MATCHER_REGEX() 317 auto& Context = Finder->getASTContext(); in AST_POLYMORPHIC_MATCHER_P() 708 Node.getBitWidthValue(Finder->getASTContext()) == Width; in AST_MATCHER_P() 729 InnerMatcher.matches(*Initializer, Finder, Builder)); in AST_MATCHER_P() 752 InnerMatcher.matches(*Decl, Finder, Builder)); in AST_MATCHER_P() 790 return matchesFirstInRange(InnerMatcher, List.begin(), List.end(), Finder, in AST_POLYMORPHIC_MATCHER_P() 889 return InnerMatcher.matches(*Node.IgnoreImplicit(), Finder, Builder); in AST_MATCHER_P() 919 return InnerMatcher.matches(*Node.IgnoreImpCasts(), Finder, Builder); in AST_MATCHER_P() [all …]
|
| H A D | ASTMatchersInternal.h | 355 virtual bool dynMatches(const DynTypedNode &DynNode, ASTMatchFinder *Finder, 378 ASTMatchFinder *Finder, 381 bool dynMatches(const DynTypedNode &DynNode, ASTMatchFinder *Finder, 383 return matches(DynNode.getUnchecked<T>(), Finder, Builder); 478 bool matches(const DynTypedNode &DynNode, ASTMatchFinder *Finder, 485 bool matchesNoKindCheck(const DynTypedNode &DynNode, ASTMatchFinder *Finder, 618 ASTMatchFinder *Finder, 620 return Implementation.matches(DynTypedNode::create(Node), Finder, Builder); 654 bool matches(const QualType &Node, ASTMatchFinder *Finder, 658 return this->InnerMatcher.matches(DynTypedNode::create(*Node), Finder, [all …]
|
| H A D | ASTMatchFinder.h | 302 MatchFinder Finder; in match() local 303 Finder.addMatcher(Matcher, &Callback); in match() 304 Finder.match(Node, Context); in match() 318 MatchFinder Finder; in match() local 319 Finder.addMatcher(Matcher, &Callback); in match() 320 Finder.matchAST(Context); in match() 328 MatchFinder Finder; in matchDynamic() local 329 Finder.addDynamicMatcher(Matcher, &Callback); in matchDynamic() 330 Finder.match(Node, Context); in matchDynamic() 344 MatchFinder Finder; in matchDynamic() local [all …]
|
| H A D | ASTMatchersMacros.h | 101 ::clang::ast_matchers::internal::ASTMatchFinder *Finder, \ 112 ::clang::ast_matchers::internal::ASTMatchFinder *Finder, \ 141 ::clang::ast_matchers::internal::ASTMatchFinder *Finder, \ 158 ::clang::ast_matchers::internal::ASTMatchFinder *Finder, \ 190 ::clang::ast_matchers::internal::ASTMatchFinder *Finder, \ 210 ::clang::ast_matchers::internal::ASTMatchFinder *Finder, \ 237 ::clang::ast_matchers::internal::ASTMatchFinder *Finder, \ 251 ::clang::ast_matchers::internal::ASTMatchFinder *Finder, \ 279 ::clang::ast_matchers::internal::ASTMatchFinder *Finder, \ 302 ::clang::ast_matchers::internal::ASTMatchFinder *Finder, \ [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| H A D | ModuleDebugInfoPrinter.cpp | 30 DebugInfoFinder Finder; member in __anon4278b06b0111::ModuleDebugInfoLegacyPrinter 57 Finder.processModule(M); in runOnModule() 75 const DebugInfoFinder &Finder) { in printModuleDebugInfo() argument 79 for (DICompileUnit *CU : Finder.compile_units()) { in printModuleDebugInfo() 90 for (DISubprogram *S : Finder.subprograms()) { in printModuleDebugInfo() 98 for (auto GVU : Finder.global_variables()) { in printModuleDebugInfo() 107 for (const DIType *T : Finder.types()) { in printModuleDebugInfo() 137 printModuleDebugInfo(O, M, Finder); in print() 145 Finder.processModule(M); in run() 146 printModuleDebugInfo(OS, &M, Finder); in run()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/ASTMatchers/ |
| H A D | ASTMatchersInternal.cpp | 53 ASTMatchFinder *Finder, 58 ASTMatchFinder *Finder, 63 ASTMatchFinder *Finder, 68 ASTMatchFinder *Finder, 73 ASTMatchFinder *Finder, 79 ASTMatchFinder *Finder, BoundNodesTreeBuilder *Builder) { in matchesAnyBase() argument 87 [Finder, Builder, &BaseSpecMatcher](const CXXBaseSpecifier *BaseSpec, in matchesAnyBase() 90 if (BaseSpecMatcher.matches(*BaseSpec, Finder, Builder)) { in matchesAnyBase() 112 const DynTypedNode &DynNode, ASTMatchFinder *Finder, 121 bool dynMatches(const DynTypedNode &DynNode, ASTMatchFinder *Finder, in dynMatches() argument [all …]
|
| H A D | ASTMatchFinder.cpp | 96 MatchChildASTVisitor(const DynTypedMatcher *Matcher, ASTMatchFinder *Finder, in MatchChildASTVisitor() argument 100 : Matcher(Matcher), Finder(Finder), Builder(Builder), CurrentDepth(0), in MatchChildASTVisitor() 152 Finder->isTraversalIgnoringImplicitNodes()) in TraverseDecl() 163 if (LambdaNode && Finder->isTraversalIgnoringImplicitNodes()) in getStmtToTraverse() 167 Finder->getASTContext().getParentMapContext().traverseIgnored( in getStmtToTraverse() 240 if (!Finder->isTraversalIgnoringImplicitNodes()) in TraverseCXXForRangeStmt() 258 if (!Finder->isTraversalIgnoringImplicitNodes()) in TraverseCXXRewrittenBinaryOperator() 267 if (!Finder->isTraversalIgnoringImplicitNodes()) in TraverseLambdaExpr() 361 if (Matcher->matches(DynTypedNode::create(Node), Finder, in match() 369 if (Matcher->matches(DynTypedNode::create(Node), Finder, in match() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/ |
| H A D | ExprMutationAnalyzer.cpp | 27 return InnerMatcher.matches(*Range, Finder, Builder); in AST_MATCHER_P() 39 return InnerMatcher.matches(*Result, Finder, Builder); in AST_MATCHER_P() 74 return ComplexMatcher.matches(Node, Finder, Builder); in AST_MATCHER_P() 83 if (InnerMatcher.matches(*Arg, Finder, &Result)) { in AST_MATCHER_P() 100 return InnerMatcher.matches(*Node.getControllingExpr(), Finder, Builder); in AST_MATCHER_P() 131 ExprMutationAnalyzer *Analyzer, F Finder) { in tryEachMatch() argument 134 if (const Stmt *S = (Analyzer->*Finder)(Nodes.getNodeAs<T>(ID))) in tryEachMatch() 176 for (const auto &Finder : Finders) { in findMutationMemoized() local 177 if (const Stmt *S = (this->*Finder)(Exp)) in findMutationMemoized() 185 MutationFinder Finder) { in tryEachDeclRef() argument [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/Transformer/ |
| H A D | RewriteRule.cpp | 190 const T &Node, ast_matchers::internal::ASTMatchFinder *Finder, in matches() argument 195 if (InnerMatcher.matches(Node, Finder, &Result)) { in matches() 218 const T &Node, ast_matchers::internal::ASTMatchFinder *Finder, in matches() argument 220 return Finder->matchesDescendantOf( in matches() 272 MatchFinder Finder; in rewriteDescendantsImpl() local 273 Callback.registerMatchers<T>(Result.Nodes, &Finder); in rewriteDescendantsImpl() 274 Finder.match(Node, *Result.Context); in rewriteDescendantsImpl()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | MallocSizeofChecker.cpp | 179 CastedAllocFinder Finder(&BR.getContext()); in checkASTCodeBody() local 180 Finder.Visit(D->getBody()); in checkASTCodeBody() 181 for (CastedAllocFinder::CallVec::iterator i = Finder.Calls.begin(), in checkASTCodeBody() 182 e = Finder.Calls.end(); i != e; ++i) { in checkASTCodeBody()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/DumpTool/ |
| H A D | ASTSrcLocProcessor.cpp | 24 Finder = std::make_unique<MatchFinder>(std::move(FinderOptions)); in ASTSrcLocProcessor() 25 Finder->addMatcher( in ASTSrcLocProcessor() 39 Finder->addMatcher( in ASTSrcLocProcessor() 49 return Finder->newASTConsumer(); in createASTConsumer()
|
| H A D | ASTSrcLocProcessor.h | 47 std::unique_ptr<clang::ast_matchers::MatchFinder> Finder; variable
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/Rename/ |
| H A D | USRFindingAction.cpp | 221 AdditionalUSRFinder Finder(ND, Context); in getUSRsForDeclaration() local 222 return Finder.Find(); in getUSRsForDeclaration() 284 AdditionalUSRFinder Finder(FoundDecl, Context); in FindSymbol() local 285 USRList.push_back(Finder.Find()); in FindSymbol()
|
| H A D | USRLocFinder.cpp | 530 RenameLocFinder Finder(USRs, TranslationUnitDecl->getASTContext()); in createRenameAtomicChanges() local 531 Finder.TraverseDecl(TranslationUnitDecl); in createRenameAtomicChanges() 550 for (const auto &RenameInfo : Finder.getRenameInfos()) { in createRenameAtomicChanges() 594 for (const auto *Using : Finder.getUsingDecls()) in createRenameAtomicChanges()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/ |
| H A D | ModuleDebugInfoPrinter.h | 20 DebugInfoFinder Finder; variable
|
| /netbsd-src/external/bsd/file/dist/magic/magdir/ |
| H A D | macintosh | 70 #0 string FNDR Macintosh Finder (data) 148 # Finder flags if not 0 152 # # original Finder flags (Bits 8-15) 177 # still more Finder flags 227 # Thereby the Finder attach documents types to applications. 244 >0 string FNDR Macintosh Finder 317 >0 string ERIK Macintosh Finder
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/ |
| H A D | ExprMutationAnalyzer.h | 49 const Stmt *tryEachDeclRef(const Decl *Dec, MutationFinder Finder);
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| H A D | CGException.cpp | 1849 CaptureFinder Finder(ParentCGF, ParentCGF.CXXABIThisDecl); in EmitCapturedLocals() local 1850 Finder.Visit(OutlinedStmt); in EmitCapturedLocals() 1854 if (!Finder.foundCaptures() && in EmitCapturedLocals() 1933 for (const VarDecl *VD : Finder.Captures) { in EmitCapturedLocals() 1980 if (Finder.SEHCodeSlot.isValid()) { in EmitCapturedLocals() 1982 recoverAddrOfEscapedLocal(ParentCGF, Finder.SEHCodeSlot, ParentFP)); in EmitCapturedLocals()
|
| /netbsd-src/external/gpl2/mkhybrid/dist/ |
| H A D | README.hfs_boot | 8 HFS partition and the necessary System, Finder, etc. files.
|
| /netbsd-src/external/apache2/llvm/dist/clang/docs/ |
| H A D | LibASTMatchersTutorial.rst | 302 MatchFinder Finder; 303 Finder.addMatcher(LoopMatcher, &Printer); 305 return Tool.run(newFrontendActionFactory(&Finder).get());
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
| H A D | Expr.cpp | 3429 SideEffectFinder Finder(Ctx, IncludePossibleEffects); in HasSideEffects() local 3430 Finder.Visit(cast<StmtExpr>(this)->getSubStmt()); in HasSideEffects() 3431 return Finder.hasSideEffects(); in HasSideEffects() 3666 NonTrivialCallFinder Finder(Ctx); in hasNonTrivialCall() local 3667 Finder.Visit(this); in hasNonTrivialCall() 3668 return Finder.hasNonTrivialCall(); in hasNonTrivialCall()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | SemaDeclCXX.cpp | 17606 FindCXXThisExpr Finder(*this); in checkThisInStaticMemberFunctionType() local 17610 !Finder.TraverseTypeLoc(ProtoTL.getReturnLoc())) in checkThisInStaticMemberFunctionType() 17619 if (!Finder.TraverseStmt(E)) in checkThisInStaticMemberFunctionType() 17636 FindCXXThisExpr Finder(*this); in checkThisInStaticMemberFunctionExceptionSpec() local 17652 if (!Finder.TraverseStmt(Proto->getNoexceptExpr())) in checkThisInStaticMemberFunctionExceptionSpec() 17658 if (!Finder.TraverseType(E)) in checkThisInStaticMemberFunctionExceptionSpec() 17668 FindCXXThisExpr Finder(*this); in checkThisInStaticMemberFunctionAttributes() local 17702 if (Arg && !Finder.TraverseStmt(Arg)) in checkThisInStaticMemberFunctionAttributes() 17706 if (!Finder.TraverseStmt(Args[I])) in checkThisInStaticMemberFunctionAttributes()
|
| H A D | SemaTemplate.cpp | 6231 UnnamedLocalNoLinkageFinder Finder(*this, SR); in CheckTemplateArgument() local 6232 (void)Finder.Visit(Context.getCanonicalType(Arg)); in CheckTemplateArgument()
|
| /netbsd-src/external/gpl2/gettext/dist/gettext-runtime/po/ |
| H A D | da.po | 1964 #~ "Finder gentagede overs�ttelser med samme besked-id (msgid). S�danne\n"
|
| /netbsd-src/external/gpl2/texinfo/dist/po/ |
| H A D | da.po | 157 msgstr "Finder indeksindgange..."
|