/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | ModuleDebugInfoPrinter.cpp | 28 DebugInfoFinder Finder; member in __anon23930::ModuleDebugInfoPrinter 53 Finder.processModule(M); in runOnModule() 74 for (DICompileUnit *CU : Finder.compile_units()) { in print() 85 for (DISubprogram *S : Finder.subprograms()) { in print() 93 for (auto GVU : Finder.global_variables()) { in print() 102 for (const DIType *T : Finder.types()) { in print()
|
/third_party/rust/crates/which-rs/src/ |
H A D | lib.rs | 33 use crate::finder::Finder; 90 let finder = Finder::new(); in which_all() 101 let finder = Finder::new(); in which_all_global() 192 let finder = Finder::new(); in which_re_in() 210 let finder = Finder::new(); in which_in_all() 226 let finder = Finder::new(); in which_in_global() 362 let finder = Finder::new(); in all_results()
|
H A D | finder.rs | 48 pub struct Finder; structure names 50 impl Finder { impls 51 pub fn new() -> Finder { in new() 52 Finder in new()
|
/third_party/protobuf/src/google/protobuf/ |
H A D | text_format.h | 211 class PROTOBUF_EXPORT Finder { class in google::protobuf::TextFormat 213 virtual ~Finder(); 334 void SetFinder(const Finder* finder) { finder_ = finder; } in SetFinder() 437 const Finder* finder_; 549 void SetFinder(const Finder* finder) { finder_ = finder; } in SetFinder() 602 const Finder* finder_;
|
H A D | text_format.cc | 187 // These functions implement the behavior of the "default" TextFormat::Finder, 242 const TextFormat::Finder* finder, ParseInfoTree* parse_info_tree, in ParserImpl() 1197 const TextFormat::Finder* finder_; 1360 // Implementation of the default Finder for extensions. 1361 TextFormat::Finder::~Finder() {} in ~Finder() 1363 const FieldDescriptor* TextFormat::Finder::FindExtension( in FindExtension() 1368 const FieldDescriptor* TextFormat::Finder::FindExtensionByNumber( in FindExtensionByNumber() 1373 const Descriptor* TextFormat::Finder::FindAnyType( in FindAnyType() 1379 MessageFactory* TextFormat::Finder [all...] |
H A D | descriptor.cc | 7084 : public TextFormat::Finder {
|
/third_party/python/Lib/test/test_importlib/import_/ |
H A D | test_path.py | 260 class Finder: class 271 with util.import_state(path=[Finder.path_location]+sys.path[:], 272 path_hooks=[Finder]): 280 class Finder: class 291 with util.import_state(path=[Finder.path_location]+sys.path[:], 292 path_hooks=[Finder]):
|
/third_party/skia/src/core/ |
H A D | SkBitmapCache.cpp | 149 static bool Finder(const SkResourceCache::Rec& baseRec, void* contextBitmap) { in Finder() function in SkBitmapCache::Rec 210 return SkResourceCache::Find(BitmapKey(desc), SkBitmapCache::Rec::Finder, result); in Find() 251 static bool Finder(const SkResourceCache::Rec& baseRec, void* contextMip) { in Finder() function 276 if (!CHECK_LOCAL(localCache, find, Find, key, MipMapRec::Finder, &result)) { in FindAndRef()
|
/third_party/python/Lib/test/test_importlib/ |
H A D | test_threaded_import.py | 70 class Finder: class 148 finder = Finder() 158 # Here the Finder instance is only used to check concurrent calls 160 finder = Finder()
|
/third_party/rust/crates/memchr/bench/src/memmem/ |
H A D | sliceslice.rs | 50 .map(|needle| memmem::Finder::new(needle.as_bytes())) in search_short_haystack() 148 .map(|needle| memmem::Finder::new(needle.as_bytes())) in search_long_haystack() 234 .map(|needle| memmem::Finder::new(needle.as_bytes())) in search_i386_haystack()
|
H A D | imp.rs | 36 let finder = memmem::Finder::new(needle).into_owned(); 48 PrebuiltIter(memmem::Finder::new(needle).into_owned()) 52 pub(crate) struct PrebuiltIter(memmem::Finder<'static>); 115 fn finder(needle: &[u8]) -> memmem::Finder<'_> { in finder() 148 pub(crate) struct PrebuiltIter(memmem::Finder<'static>); 230 let finder = bstr::Finder::new(needle).into_owned(); 242 PrebuiltIter(bstr::Finder::new(needle).into_owned()) 246 pub(crate) struct PrebuiltIter(bstr::Finder<'static>);
|
/third_party/rust/crates/memchr/src/memmem/ |
H A D | mod.rs | 56 subsequent searches. This can be done with a [`Finder`] (or a [`FinderRev`] for 62 let finder = memmem::Finder::new("foo"); 194 FindIter::new(haystack, Finder::new(needle)) in find_iter() 234 /// small haystacks, it may be faster to initialize a [`Finder`] once, 263 Finder::new(needle).find(haystack) in find() 314 finder: Finder<'n>, 322 finder: Finder<'n>, 442 /// [`find`] is good enough, but `Finder` is useful when you can meaningfully 446 /// version which permits building a `Finder` that is not connected to 449 pub struct Finder<' structure names 453 impl<'n> Finder<'n> { global() impls [all...] |
/third_party/python/Lib/importlib/ |
H A D | abc.py | 23 'Loader', 'Finder', 'MetaPathFinder', 'PathEntryFinder', 43 class Finder(metaclass=abc.ABCMeta): class 56 warnings.warn("the Finder ABC is deprecated and " 67 warnings.warn("importlib.abc.Finder along with its find_module() "
|
/third_party/rust/crates/regex/src/literal/ |
H A D | imp.rs | 362 finder: memmem::Finder<'static>, 369 finder: memmem::Finder::new(pat).into_owned(), in new()
|