HomeSort by: relevance | last modified time | path
    Searched defs:Finder (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
ModuleDebugInfoPrinter.h 20 DebugInfoFinder Finder;
  /src/external/apache2/llvm/dist/clang/lib/Tooling/DumpTool/
ASTSrcLocProcessor.h 47 std::unique_ptr<clang::ast_matchers::MatchFinder> Finder;
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ModuleDebugInfoPrinter.cpp 30 DebugInfoFinder Finder;
57 Finder.processModule(M);
75 const DebugInfoFinder &Finder) {
79 for (DICompileUnit *CU : Finder.compile_units()) {
90 for (DISubprogram *S : Finder.subprograms()) {
98 for (auto GVU : Finder.global_variables()) {
107 for (const DIType *T : Finder.types()) {
137 printModuleDebugInfo(O, M, Finder);
145 Finder.processModule(M);
146 printModuleDebugInfo(OS, &M, Finder);
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
ASTMatchFinder.h 32 // MatchFinder finder;
33 // finder.AddMatcher(Id("id", record(hasName("::a_namespace::AClass"))),
35 // return Tool.Run(newFrontendActionFactory(&finder));
302 MatchFinder Finder;
303 Finder.addMatcher(Matcher, &Callback);
304 Finder.match(Node, Context);
318 MatchFinder Finder;
319 Finder.addMatcher(Matcher, &Callback);
320 Finder.matchAST(Context);
328 MatchFinder Finder;
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
ASTMatchFinder.cpp 96 MatchChildASTVisitor(const DynTypedMatcher *Matcher, ASTMatchFinder *Finder,
100 : Matcher(Matcher), Finder(Finder), Builder(Builder), CurrentDepth(0),
152 Finder->isTraversalIgnoringImplicitNodes())
163 if (LambdaNode && Finder->isTraversalIgnoringImplicitNodes())
167 Finder->getASTContext().getParentMapContext().traverseIgnored(
240 if (!Finder->isTraversalIgnoringImplicitNodes())
258 if (!Finder->isTraversalIgnoringImplicitNodes())
267 if (!Finder->isTraversalIgnoringImplicitNodes())
361 if (Matcher->matches(DynTypedNode::create(Node), Finder,
    [all...]

Completed in 25 milliseconds