Home
last modified time | relevance | path

Searched refs:finder (Results 26 - 50 of 62) sorted by relevance

123

/base/notification/common_event_service/services/src/
H A Dstatic_subscriber_manager.cpp116 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 &currentEvents = 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 Dreducer.h85 // 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 Dreducer.h85 // 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 Dreducer.h85 // 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 DToposortStructs.cpp305 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 DSymbolEnv.cpp75 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 Dfixtures.py51 def install_finder(finder):
52 sys.meta_path.append(finder)
56 sys.meta_path.remove(finder)
/third_party/curl/src/
H A Dtool_findfile.c44 struct finder { struct
52 static const struct finder conf_list[] = {
/third_party/skia/third_party/externals/tint/fuzzers/tint_spirv_tools_fuzzer/
H A Dspirv_reduce_mutator.cc97 // 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 Dcompiler_test.cpp339 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 Dtest_pkgutil.py350 # 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 Dtest_zipimport_support.py37 finder = doctest.DocTestFinder(verbose=verbose, recurse=False)
45 for example in finder.find(obj, name, module):
/third_party/protobuf/src/google/protobuf/
H A Dtext_format.h334 void SetFinder(const Finder* finder) { finder_ = finder; } in SetFinder() argument
549 void SetFinder(const Finder* finder) { finder_ = finder; } in SetFinder() argument
H A Dextension_set.cc1203 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 Dspill-placer.h78 SpillPlacer(LiveRangeFinder* finder, TopTierRegisterAllocationData* data,
H A Dspill-placer.cc14 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 Dstore-store-elimination.cc579 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 Dloop-analysis.cc543 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 Dchecker.rs1 use crate::finder::Checker;
/third_party/rust/crates/memchr/bench/src/memmem/
H A Dmod.rs344 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 DFileFind.cpp564 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.py926 # 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 Dext.py693 finder = _CommentFinder(tokens, comment_tags)
695 yield lineno, func, message, finder.find_comments(lineno)
/third_party/node/tools/inspector_protocol/jinja2/
H A Dext.py617 finder = _CommentFinder(tokens, comment_tags)
619 yield lineno, func, message, finder.find_comments(lineno)
/third_party/python/Lib/importlib/metadata/
H A D__init__.py598 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

Completed in 22 milliseconds

123