| /base/notification/common_event_service/services/src/ |
| H A D | static_subscriber_manager.cpp | 116 auto finder = staticSubscribers_.find(bundleName); in InitValidSubscribers() local 117 if (finder != staticSubscribers_.end()) { in InitValidSubscribers() 119 for (auto &event : finder->second.events) { in InitValidSubscribers() 493 auto finder = disableEvents_.find(bundleName); in UpdateDisableEvents() local 494 if (finder == disableEvents_.end()) { in UpdateDisableEvents() 503 auto ¤tEvents = finder->second; in UpdateDisableEvents() 519 if (finder->second.empty()) { in UpdateDisableEvents() 520 disableEvents_.erase(finder); in UpdateDisableEvents()
|
| /third_party/skia/third_party/externals/spirv-tools/source/reduce/ |
| H A D | reducer.h | 85 // Adds a reduction pass based on the given finder to the sequence of passes 87 void AddReductionPass(std::unique_ptr<ReductionOpportunityFinder> finder); 89 // Adds a cleanup reduction pass based on the given finder to the sequence of 92 std::unique_ptr<ReductionOpportunityFinder> finder);
|
| /third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/reduce/ |
| H A D | reducer.h | 85 // Adds a reduction pass based on the given finder to the sequence of passes 87 void AddReductionPass(std::unique_ptr<ReductionOpportunityFinder> finder); 89 // Adds a cleanup reduction pass based on the given finder to the sequence of 92 std::unique_ptr<ReductionOpportunityFinder> finder);
|
| /third_party/spirv-tools/source/reduce/ |
| H A D | reducer.h | 85 // Adds a reduction pass based on the given finder to the sequence of passes 87 void AddReductionPass(std::unique_ptr<ReductionOpportunityFinder> finder); 89 // Adds a cleanup reduction pass based on the given finder to the sequence of 92 std::unique_ptr<ReductionOpportunityFinder> finder);
|
| /third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/ |
| H A D | ToposortStructs.cpp | 305 FindStructEqualityUse finder(symbolEnv); in ToposortStructs() 306 root.traverse(&finder); in ToposortStructs() 307 ppc.hasStructEq = !finder.mUsedStructs.empty(); in ToposortStructs() 319 compiler.getSymbolTable(), finder.mUsedStructs)) in ToposortStructs()
|
| H A D | SymbolEnv.cpp | 75 StructFinder finder(compiler); in FindStructs() 76 if (!finder.rebuildRoot(root)) in FindStructs() 80 return std::move(finder.nameToStruct); in FindStructs()
|
| /third_party/python/Lib/test/test_importlib/ |
| H A D | fixtures.py | 51 def install_finder(finder): 52 sys.meta_path.append(finder) 56 sys.meta_path.remove(finder)
|
| /third_party/curl/src/ |
| H A D | tool_findfile.c | 44 struct finder { struct 52 static const struct finder conf_list[] = {
|
| /third_party/skia/third_party/externals/tint/fuzzers/tint_spirv_tools_fuzzer/ |
| H A D | spirv_reduce_mutator.cc | 97 // when no reduction was returned by the reduction finder). in Mutate() 109 // Select an opportunity finder and get some reduction opportunities from in Mutate() 111 auto finder = GetRandomElement(&finders_); in Mutate() local 113 finder->GetAvailableOpportunities(ir_context_.get(), 0); in Mutate()
|
| /third_party/skia/third_party/externals/angle2/src/tests/test_utils/ |
| H A D | compiler_test.cpp | 339 FunctionCallFinder finder(functionMangledName.c_str()); in FindFunctionCallNode() 340 root->traverse(&finder); in FindFunctionCallNode() 341 return finder.getNode(); in FindFunctionCallNode()
|
| /third_party/python/Lib/test/ |
| H A D | test_pkgutil.py | 350 # Use a dummy finder/loader 431 for finder in importers: 432 spec = pkgutil._get_spec(finder, fullname) 440 self.assertIsInstance(finder, importlib.machinery.FileFinder) 441 self.assertEqual(finder, expected_importer) 444 self.assertIsNone(pkgutil._get_spec(finder, pkgname))
|
| H A D | test_zipimport_support.py | 37 finder = doctest.DocTestFinder(verbose=verbose, recurse=False) 45 for example in finder.find(obj, name, module):
|
| /third_party/protobuf/src/google/protobuf/ |
| H A D | text_format.h | 334 void SetFinder(const Finder* finder) { finder_ = finder; } in SetFinder() argument 549 void SetFinder(const Finder* finder) { finder_ = finder; } in SetFinder() argument
|
| H A D | extension_set.cc | 1203 GeneratedExtensionFinder finder(containing_type); in ParseField() 1207 if (!FindExtensionInfoFromFieldNumber(tag & 7, number, &finder, &extension, in ParseField() 1399 GeneratedExtensionFinder finder(containing_type); in ParseField() 1400 return ParseField(tag, input, &finder, &skipper); in ParseField() 1407 GeneratedExtensionFinder finder(containing_type); in ParseField() 1408 return ParseField(tag, input, &finder, &skipper); in ParseField() 1462 GeneratedExtensionFinder finder(containing_type); in ParseMessageSet() 1463 return ParseMessageSetLite(input, &finder, &skipper); in ParseMessageSet()
|
| /third_party/node/deps/v8/src/compiler/backend/ |
| H A D | spill-placer.h | 78 SpillPlacer(LiveRangeFinder* finder, TopTierRegisterAllocationData* data,
|
| H A D | spill-placer.cc | 14 SpillPlacer::SpillPlacer(LiveRangeFinder* finder, in SpillPlacer() argument 16 : finder_(finder), data_(data), zone_(zone) {} in SpillPlacer()
|
| /third_party/node/deps/v8/src/compiler/ |
| H A D | store-store-elimination.cc | 579 RedundantStoreFinder finder(js_graph, tick_counter, temp_zone); in Run() 580 finder.Find(); in Run() 583 for (Node* node : finder.to_remove_const()) { in Run()
|
| H A D | loop-analysis.cc | 543 LoopFinderImpl finder(graph, loop_tree, tick_counter, zone); in BuildLoopTree() 544 finder.Run(); in BuildLoopTree() 546 finder.Print(); in BuildLoopTree()
|
| /third_party/rust/crates/which-rs/src/ |
| H A D | checker.rs | 1 use crate::finder::Checker;
|
| /third_party/rust/crates/memchr/bench/src/memmem/ |
| H A D | mod.rs | 344 let finder = $new_finder($q.needle); in prebuilt_iter() 346 let it = finder.iter($inp.corpus); in prebuilt_iter()
|
| /third_party/lzma/CPP/Windows/ |
| H A D | FileFind.cpp | 564 CFindFile finder;
in Find() local 627 if (finder.FindFirst(s, *this))
in Find() 659 bool res = finder.FindFirst(path, *this);
in Find()
|
| /third_party/python/Lib/importlib/ |
| H A D | _bootstrap.py | 926 # part of the importer), instead of here (the finder part). 931 # However, getting as much data in the finder as possible 1044 def _find_spec_legacy(finder, name, path): 1045 msg = (f"{_object_name(finder)}.find_spec() not found; " 1048 loader = finder.find_module(name, path) 1069 for finder in meta_path: 1072 find_spec = finder.find_spec 1074 spec = _find_spec_legacy(finder, name, path)
|
| /third_party/node/deps/v8/third_party/jinja2/ |
| H A D | ext.py | 693 finder = _CommentFinder(tokens, comment_tags) 695 yield lineno, func, message, finder.find_comments(lineno)
|
| /third_party/node/tools/inspector_protocol/jinja2/ |
| H A D | ext.py | 617 finder = _CommentFinder(tokens, comment_tags) 619 yield lineno, func, message, finder.find_comments(lineno)
|
| /third_party/python/Lib/importlib/metadata/ |
| H A D | __init__.py | 598 getattr(finder, 'find_distributions', None) for finder in sys.meta_path 750 Specific name for which a distribution finder should match. 760 The sequence of directory path that a distribution finder
|