HomeSort by relevance Sort by last modified time
    Searched defs:Finder (Results 1 - 25 of 30) sorted by null

1 2

  /external/clang/unittests/AST/
DeclTest.cpp 22 MatchFinder Finder;
24 newFrontendActionFactory(&Finder));
NamedDeclPrinterTest.cpp 69 MatchFinder Finder;
70 Finder.addMatcher(NodeMatch, &Printer);
72 newFrontendActionFactory(&Finder);
StmtPrinterTest.cpp 74 MatchFinder Finder;
75 Finder.addMatcher(NodeMatch, &Printer);
77 newFrontendActionFactory(&Finder));
DeclPrinterTest.cpp 75 MatchFinder Finder;
76 Finder.addMatcher(NodeMatch, &Printer);
78 newFrontendActionFactory(&Finder));
    [all...]
MatchVerifier.h 93 MatchFinder Finder;
94 Finder.addMatcher(AMatcher.bind(""), this);
96 tooling::newFrontendActionFactory(&Finder));
138 MatchFinder Finder;
139 Finder.addMatcher(AMatcher.bind(""), this);
142 Finder.match(*D, D->getASTContext());
  /external/droiddriver/src/io/appium/droiddriver/finders/
Finder.java 25 public interface Finder {
27 * Returns the matching UiElement. The implementing finder should not poll.
41 * It is recommended that this method return the description of the finder,
  /external/swiftshader/third_party/LLVM/lib/Analysis/
ModuleDebugInfoPrinter.cpp 30 DebugInfoFinder Finder;
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.type_end(); I != E; ++I)
    [all...]
  /external/clang/unittests/Tooling/
RefactoringCallbacksTest.cpp 26 MatchFinder Finder;
27 Finder.addMatcher(AMatcher, &Callback);
29 tooling::newFrontendActionFactory(&Finder));
  /external/guice/extensions/persist/src/com/google/inject/persist/finder/
Finder.java 17 package com.google.inject.persist.finder;
26 * Marks a method stub as a dynamic finder. The method is intercepted and replaced with the
33 public @interface Finder {
  /external/python/cpython2/Lib/plat-mac/lib-scriptpackages/Finder/
__init__.py 2 Package generated from /System/Library/CoreServices/Finder.app
6 warnpy3k("In 3.x, the Finder package is removed.", stacklevel=2)
36 'CoRe' : ('Finder.Standard_Suite', 'Standard_Suite'),
37 'fleg' : ('Finder.Legacy_suite', 'Legacy_suite'),
38 'fndr' : ('Finder.Containers_and_folders', 'Containers_and_folders'),
39 'fndr' : ('Finder.Files', 'Files'),
40 'fndr' : ('Finder.Finder_Basics', 'Finder_Basics'),
41 'fndr' : ('Finder.Finder_items', 'Finder_items'),
42 'fndr' : ('Finder.Window_classes', 'Window_classes'),
43 'tpdf' : ('Finder.Type_Definitions', 'Type_Definitions')
    [all...]
  /external/clang/unittests/Analysis/
CFGTest.cpp 47 ast_matchers::MatchFinder Finder;
48 Finder.addMatcher(ast_matchers::functionDecl().bind("func"), &Callback);
50 tooling::newFrontendActionFactory(&Finder));
  /external/llvm/lib/Analysis/
ModuleDebugInfoPrinter.cpp 29 DebugInfoFinder Finder;
54 Finder.processModule(M);
75 for (DICompileUnit *CU : Finder.compile_units()) {
85 for (DISubprogram *S : Finder.subprograms()) {
93 for (const DIGlobalVariable *GV : Finder.global_variables()) {
101 for (const DIType *T : Finder.types()) {
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
ModuleDebugInfoPrinter.cpp 28 DebugInfoFinder Finder;
53 Finder.processModule(M);
74 for (DICompileUnit *CU : Finder.compile_units()) {
85 for (DISubprogram *S : Finder.subprograms()) {
93 for (auto GVU : Finder.global_variables()) {
102 for (const DIType *T : Finder.types()) {
  /external/clang/unittests/ASTMatchers/
ASTMatchersInternalTest.cpp 59 return AMatcher.matches(Node, Finder, Builder);
78 return Finder->matchesChildOf(
107 MatchFinder Finder(std::move(Options));
113 Finder.addMatcher(decl(), &Callback);
115 newFrontendActionFactory(&Finder));
133 MatchFinder Finder;
135 Finder.addMatcher(decl(), &VerifyCallback);
137 newFrontendActionFactory(&Finder));
144 Finder.matchAST(AST->getASTContext());
159 MatchFinder Finder;
    [all...]
ASTMatchersTest.h 68 MatchFinder Finder;
70 Finder.addMatcher(AMatcher, &VerifyFound);
72 if (!Finder.addDynamicMatcher(AMatcher, &VerifyDynamicFound))
75 newFrontendActionFactory(&Finder));
179 MatchFinder Finder;
181 Finder.addMatcher(AMatcher, &VerifyFound);
183 if (!Finder.addDynamicMatcher(AMatcher, &VerifyDynamicFound))
186 newFrontendActionFactory(&Finder));
231 MatchFinder Finder;
233 Finder.addMatcher(AMatcher, &VerifyVerifiedResult)
    [all...]
ASTMatchersNodeTest.cpp 22 TEST(Finder, DynamicOnlyAcceptsSomeMatchers) {
23 MatchFinder Finder;
24 EXPECT_TRUE(Finder.addDynamicMatcher(decl(), nullptr));
25 EXPECT_TRUE(Finder.addDynamicMatcher(callExpr(), nullptr));
26 EXPECT_TRUE(Finder.addDynamicMatcher(constantArrayType(hasSize(42)),
30 EXPECT_FALSE(Finder.addDynamicMatcher(isArrow(), nullptr));
31 EXPECT_FALSE(Finder.addDynamicMatcher(hasName("x"), nullptr));
    [all...]
  /external/python/cpython3/Lib/test/
test_threaded_import.py 67 class Finder:
68 """A dummy finder to detect concurrent access to its find_spec()
88 """A dummy finder which flushes sys.path_importer_cache when it gets
145 finder = Finder()
146 sys.meta_path.insert(0, finder)
149 self.assertGreater(finder.numcalls, 0)
150 self.assertEqual(finder.x, finder.numcalls)
152 sys.meta_path.remove(finder)
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchFinder.h 33 // MatchFinder finder;
34 // finder.AddMatcher(Id("id", record(hasName("::a_namespace::AClass"))),
36 // return Tool.Run(newFrontendActionFactory(&finder));
284 MatchFinder Finder;
285 Finder.addMatcher(Matcher, &Callback);
286 Finder.match(Node, Context);
300 MatchFinder Finder;
301 Finder.addMatcher(Matcher, &Callback);
302 Finder.matchAST(Context);
  /external/python/cpython3/Lib/importlib/
abc.py 30 class Finder(metaclass=abc.ABCMeta):
35 reimplementations of the import system. Otherwise, finder
50 class MetaPathFinder(Finder):
64 finder.find_spec(). If find_spec() exists then backwards-compatible
79 """An optional method for clearing the finder's cache, if any.
87 class PathEntryFinder(Finder):
102 The portion will be discarded if another path entry finder
106 finder.find_spec(). If find_spec() is provided than backwards-compatible
129 """An optional method for clearing the finder's cache, if any.
  /external/python/cpython3/Lib/test/test_importlib/import_/
test_path.py 85 # The empty string should create a finder using the cwd.
238 class Finder:
249 with util.import_state(path=[Finder.path_location]+sys.path[:],
250 path_hooks=[Finder]):
256 class Finder:
267 with util.import_state(path=[Finder.path_location]+sys.path[:],
268 path_hooks=[Finder]):
  /external/protobuf/src/google/protobuf/
text_format.h 344 class LIBPROTOBUF_EXPORT Finder {
346 virtual ~Finder();
430 void SetFinder(Finder* finder) {
431 finder_ = finder;
476 Finder* finder_;
  /external/skia/src/core/
SkBitmapCache.cpp 149 static bool Finder(const SkResourceCache::Rec& baseRec, void* contextBitmap) {
210 return SkResourceCache::Find(BitmapKey(desc), SkBitmapCache::Rec::Finder, result);
251 static bool Finder(const SkResourceCache::Rec& baseRec, void* contextMip) {
276 if (!CHECK_LOCAL(localCache, find, Find, key, MipMapRec::Finder, &result)) {
  /external/skqp/src/core/
SkBitmapCache.cpp 149 static bool Finder(const SkResourceCache::Rec& baseRec, void* contextBitmap) {
210 return SkResourceCache::Find(BitmapKey(desc), SkBitmapCache::Rec::Finder, result);
251 static bool Finder(const SkResourceCache::Rec& baseRec, void* contextMip) {
276 if (!CHECK_LOCAL(localCache, find, Find, key, MipMapRec::Finder, &result)) {
  /build/soong/finder/
finder.go 15 package finder package
33 "android/soong/finder/fs"
36 // This file provides a Finder struct that can quickly search for files satisfying
38 // This Finder gets its speed partially from parallelism and partially from caching.
39 // If a Stat call returns the same result as last time, then it means Finder
42 // The primary data structure used by the finder is the field Finder.nodes ,
47 // The common use case for the Finder is that the caller creates a Finder and gives
50 // 1. The Finder begins to load its d
    [all...]
  /external/llvm/unittests/Transforms/Utils/
Cloning.cpp 213 void TearDown() override { delete Finder; }
281 Finder = new DebugInfoFinder();
282 Finder->processModule(*M);
289 DebugInfoFinder* Finder;
302 unsigned SubprogramCount = Finder->subprogram_count();
305 auto Iter = Finder->subprograms().begin();
448 DebugInfoFinder Finder;
449 Finder.processModule(*OldM);
450 EXPECT_EQ(1U, Finder.subprogram_count());

Completed in 1937 milliseconds

1 2