Searched refs:Finder (Results 1 - 16 of 16) sorted by relevance

/external/llvm/lib/Analysis/
H A DModuleDebugInfoPrinter.cpp30 DebugInfoFinder Finder; member in class:__anon8609::ModuleDebugInfoPrinter
55 Finder.processModule(M);
60 for (DebugInfoFinder::iterator I = Finder.compile_unit_begin(),
61 E = Finder.compile_unit_end(); I != E; ++I) {
67 for (DebugInfoFinder::iterator I = Finder.subprogram_begin(),
68 E = Finder.subprogram_end(); I != E; ++I) {
74 for (DebugInfoFinder::iterator I = Finder.global_variable_begin(),
75 E = Finder.global_variable_end(); I != E; ++I) {
81 for (DebugInfoFinder::iterator I = Finder.type_begin(),
82 E = Finder
[all...]
/external/clang/include/clang/ASTMatchers/
H A DASTMatchers.h208 if (InnerMatcher.matches(List.get(i), Finder, Builder))
241 return InnerMatcher.matches(*Node.IgnoreImpCasts(), Finder, Builder);
262 return InnerMatcher.matches(*Node.IgnoreParenCasts(), Finder, Builder);
288 return InnerMatcher.matches(*Node.IgnoreParenImpCasts(), Finder, Builder);
308 return InnerMatcher.matches(List.get(N), Finder, Builder);
326 return InnerMatcher.matches(Node.getAsType(), Finder, Builder);
344 return InnerMatcher.matches(*Declaration, Finder, Builder);
680 InnerMatcher.matches(*Increment, Finder, Builder));
694 return (Init != NULL && InnerMatcher.matches(*Init, Finder, Builder));
1009 return InnerMatcher.matches(ArgumentType, Finder, Builde
[all...]
H A DASTMatchersInternal.h202 /// the AST via 'Finder'.
204 ASTMatchFinder *Finder,
221 ASTMatchFinder * /* Finder */,
238 ASTMatchFinder *Finder,
262 ASTMatchFinder *Finder,
264 return Implementation->matches(Node, Finder, Builder);
284 ASTMatchFinder *Finder,
288 return matches(*Node, Finder, Builder);
301 ASTMatchFinder *Finder,
303 return From.matches(Node, Finder, Builde
261 matches(const T &Node, ASTMatchFinder *Finder, BoundNodesTreeBuilder *Builder) const argument
283 matches(const ast_type_traits::DynTypedNode DynNode, ASTMatchFinder *Finder, BoundNodesTreeBuilder *Builder) const argument
300 matches(const Derived &Node, ASTMatchFinder *Finder, BoundNodesTreeBuilder *Builder) const argument
333 matches(const T &Node, ASTMatchFinder *Finder, BoundNodesTreeBuilder *Builder) const argument
342 matchesSpecialized(const QualType &Node, ASTMatchFinder *Finder, BoundNodesTreeBuilder *Builder) const argument
354 matchesSpecialized(const CallExpr &Node, ASTMatchFinder *Finder, BoundNodesTreeBuilder *Builder) const argument
363 matchesSpecialized(const CXXConstructExpr &Node, ASTMatchFinder *Finder, BoundNodesTreeBuilder *Builder) const argument
603 matches(const T &Node, ASTMatchFinder *Finder, BoundNodesTreeBuilder *Builder) const argument
625 matches(const T &Node, ASTMatchFinder *Finder, BoundNodesTreeBuilder *Builder) const argument
674 matches(const T &Node, ASTMatchFinder *Finder, BoundNodesTreeBuilder *Builder) const argument
700 matches(const T& Node, ASTMatchFinder* Finder, BoundNodesTreeBuilder* Builder) const argument
724 matches(const T &Node, ASTMatchFinder *Finder, BoundNodesTreeBuilder *Builder) const argument
745 matches(const T &Node, ASTMatchFinder *Finder, BoundNodesTreeBuilder *Builder) const argument
770 matches(const T &Node, ASTMatchFinder *Finder, BoundNodesTreeBuilder *Builder) const argument
816 matches(const T &Node, ASTMatchFinder *Finder, BoundNodesTreeBuilder *Builder) const argument
839 matches(const T &Node, ASTMatchFinder *Finder, BoundNodesTreeBuilder *Builder) const argument
865 matches(const T& Node, ASTMatchFinder* Finder, BoundNodesTreeBuilder* Builder) const argument
920 matches(const T& Node, ASTMatchFinder* Finder, BoundNodesTreeBuilder* Builder) const argument
939 matches(const T& Node, ASTMatchFinder* Finder, BoundNodesTreeBuilder* Builder) const argument
[all...]
H A DASTMatchersMacros.h30 // return InnerMatcher.matches(*Node.getMemberDecl(), Finder, Builder);
47 /// Finder: an ASTMatchFinder*.
58 const Type &Node, ASTMatchFinder *Finder, \
67 const Type &Node, ASTMatchFinder *Finder, \
79 /// Finder: an ASTMatchFinder*.
91 const Type &Node, ASTMatchFinder *Finder, \
102 const Type &Node, ASTMatchFinder *Finder, \
115 /// Finder: an ASTMatchFinder*.
129 const Type &Node, ASTMatchFinder *Finder, \
143 const Type &Node, ASTMatchFinder *Finder, \
[all...]
/external/clang/unittests/ASTMatchers/
H A DASTMatchersTest.h56 MatchFinder Finder; local
57 Finder.addMatcher(AMatcher, new VerifyMatch(0, &Found));
58 OwningPtr<FrontendActionFactory> Factory(newFrontendActionFactory(&Finder));
92 MatchFinder Finder; local
93 Finder.addMatcher(
95 OwningPtr<FrontendActionFactory> Factory(newFrontendActionFactory(&Finder));
H A DASTMatchersTest.cpp1914 return AMatcher.matches(Node, Finder, Builder);
1935 return Finder->matchesChildOf(
/external/clang/unittests/Tooling/
H A DRefactoringCallbacksTest.cpp26 MatchFinder Finder; local
27 Finder.addMatcher(AMatcher, &Callback);
29 tooling::newFrontendActionFactory(&Finder));
/external/clang/lib/StaticAnalyzer/Checkers/
H A DMallocSizeofChecker.cpp177 CastedAllocFinder Finder(&BR.getContext());
178 Finder.Visit(D->getBody());
179 for (CastedAllocFinder::CallVec::iterator i = Finder.Calls.begin(),
180 e = Finder.Calls.end(); i != e; ++i) {
/external/clang/lib/ASTMatchers/
H A DASTMatchFinder.cpp119 ASTMatchFinder *Finder,
125 Finder(Finder),
220 Finder, Builder)) {
236 Finder, &RecursiveBuilder)) {
250 ASTMatchFinder *const Finder; member in class:clang::ast_matchers::internal::__anon3535::MatchChildASTVisitor
118 MatchChildASTVisitor(const DynTypedMatcher *Matcher, ASTMatchFinder *Finder, BoundNodesTreeBuilder *Builder, int MaxDepth, ASTMatchFinder::TraversalKind Traversal, ASTMatchFinder::BindKind Bind) argument
/external/clang/unittests/AST/
H A DDeclPrinterTest.cpp74 MatchFinder Finder; local
75 Finder.addMatcher(NodeMatch, &Printer);
76 OwningPtr<FrontendActionFactory> Factory(newFrontendActionFactory(&Finder));
/external/webkit/Source/JavaScriptCore/wtf/
H A DFastMalloc.cpp2218 template <class Finder, class Reader>
2219 void enumerateFreeObjects(Finder& finder, const Reader& reader)
2294 template <class Finder, class Reader>
2295 void enumerateFreeObjects(Finder& finder, const Reader& reader)
2333 template <class Finder, class Reader>
2334 void enumerateFreeObjects(Finder& finder, const Reader& reader, TCMalloc_Central_FreeList* remoteCentralFreeList)
/external/clang/lib/Sema/
H A DSemaDeclCXX.cpp11089 FindCXXThisExpr Finder(*this);
11093 !Finder.TraverseTypeLoc(ProtoTL->getResultLoc()))
11114 FindCXXThisExpr Finder(*this);
11126 if (!Finder.TraverseStmt(Proto->getNoexceptExpr()))
11133 if (!Finder.TraverseType(*E))
11143 FindCXXThisExpr Finder(*this);
11186 if (Arg && !Finder.TraverseStmt(Arg))
11190 if (!Finder.TraverseStmt(Args[I]))
H A DSemaTemplate.cpp3565 UnnamedLocalNoLinkageFinder Finder(*this, SR);
3566 (void)Finder.Visit(Context.getCanonicalType(Arg));
/external/clang/lib/AST/
H A DExpr.cpp2880 NonTrivialCallFinder Finder(Ctx);
2881 Finder.Visit(this);
2882 return Finder.hasNonTrivialCall();
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.osgi_3.6.1.R36x_v20100806.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.2.R36x_v20101103.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 319 milliseconds