Home
last modified time | relevance | path

Searched refs:ForEach (Results 1 - 25 of 42) sorted by relevance

12

/third_party/protobuf/csharp/src/Google.Protobuf.Benchmarks/
H A DGoogleMessageBenchmark.cs79 public void WriteToStream() => subTests.ForEach(item => item.WriteToStream()); in WriteToStream()
82 public void ToByteArray() => subTests.ForEach(item => item.ToByteArray()); in ToByteArray()
85 public void ParseFromByteArray() => subTests.ForEach(item => item.ParseFromByteArray(parser)); in ParseFromByteArray()
88 public void ParseFromStream() => subTests.ForEach(item => item.ParseFromStream(parser)); in ParseFromStream()
/third_party/skia/third_party/externals/spirv-tools/source/
H A Dextensions.cpp39 extensions.ForEach( in ExtensionSetToString()
H A Denum_set.h36 // The ForEach method will call the functor on enum values in
105 void ForEach(std::function<void(EnumType)> f) const { in ForEach() function in spvtools::EnumSet
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/
H A Dextensions.cpp39 extensions.ForEach( in ExtensionSetToString()
H A Denum_set.h36 // The ForEach method will call the functor on enum values in
105 void ForEach(std::function<void(EnumType)> f) const { in ForEach() function in spvtools::EnumSet
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
H A Dcord_rep_ring.h333 void ForEach(index_type head, index_type tail, F&& f) const {
343 void ForEach(F&& f) const { in ForEach() function in absl::cord_internal::CordRepRing
344 ForEach(head_, tail_, std::forward<F>(f)); in ForEach()
H A Dcord_rep_ring.cc67 rep->ForEach(head, tail, [rep](index_type ix) { in UnrefEntries()
260 src->ForEach(head, tail, [&](index_type index) { in Fill()
391 ring->ForEach(head.index, tail.index, [&](index_type ix) { in AddRing()
401 ring->ForEach(head.index, tail.index, [&](index_type ix) { in AddRing()
H A Dcordz_info.cc229 ring->ForEach([&](CordRepRing::index_type pos) { in AnalyzeRing()
/third_party/json/tests/thirdparty/Fuzzer/
H A DFuzzerValueBitMap.h72 void ForEach(Callback CB) {
H A DFuzzerTracePC.h147 ValueProfileMap.ForEach([&](size_t Idx) {
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Dfeature_manager.cpp64 .ForEach([this](SpvCapability c) { AddCapability(c); }); in AddCapability()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Dfeature_manager.cpp64 .ForEach([this](SpvCapability c) { AddCapability(c); }); in AddCapability()
/third_party/protobuf/src/google/protobuf/
H A Dextension_set.h680 static KeyValueFunctor ForEach(Iterator begin, Iterator end, in ForEach() function in google::protobuf::internal::ExtensionSet
688 KeyValueFunctor ForEach(KeyValueFunctor func) { in ForEach() function in google::protobuf::internal::ExtensionSet
690 return ForEach(map_.large->begin(), map_.large->end(), std::move(func)); in ForEach()
692 return ForEach(flat_begin(), flat_end(), std::move(func)); in ForEach()
697 KeyValueFunctor ForEach(KeyValueFunctor func) const { in ForEach() function in google::protobuf::internal::ExtensionSet
699 return ForEach(map_.large->begin(), map_.large->end(), std::move(func)); in ForEach()
701 return ForEach(flat_begin(), flat_end(), std::move(func)); in ForEach()
H A Dextension_set_heavy.cc105 ForEach([containing_type, pool, &output](int number, const Extension& ext) { in AppendToList()
408 ForEach([&total_size](int /* number */, const Extension& ext) { in SpaceUsedExcludingSelfLong()
H A Dextension_set.cc206 ForEach([](int /* number */, Extension& ext) { ext.Free(); }); in ~ExtensionSet()
245 ForEach([&result](int /* number */, const Extension& ext) { in NumExtensions()
886 ForEach([](int /* number */, Extension& ext) { ext.Clear(); }); in Clear()
922 other.ForEach([this](int number, const Extension& ext) { in MergeFrom()
1490 ForEach([&target, stream](int number, const Extension& ext) { in InternalSerializeMessageSetWithCachedSizesToArray()
1499 ForEach([&total_size](int number, const Extension& ext) { in ByteSize()
2139 ForEach([&total_size](int number, const Extension& ext) { in MessageSetByteSize()
/third_party/node/deps/v8/src/ast/
H A Dscopes.cc1559 void Scope::ForEach(FunctionType callback) { in ForEach() function in v8::internal::Scope
1594 this->ForEach([max_outer_scope, isolate, non_locals](Scope* scope) { in CollectNonLocals()
1632 this->ForEach([max_outer_scope, ast_node_factory, new_unresolved_list, in AnalyzePartially()
1724 this->ForEach([parser](Scope* scope) { in SavePreparseData()
2029 this->ForEach([](Scope* scope) { in CheckScopePositions()
2041 this->ForEach([](Scope* scope) { in CheckZones()
2572 this->ForEach([](Scope* scope) -> Iteration { in AllocateVariablesRecursively()
2664 this->ForEach([](Scope* scope) { in RecalcPrivateNameContextChain()
/third_party/googletest/googlemock/test/
H A Dgmock-pp-string_test.cc164 TEST(Macros, ForEach) { in TEST()
/third_party/skia/third_party/externals/spirv-tools/test/
H A Dunit_spirv.h206 capabilities.ForEach([&result](SpvCapability c) { result.push_back(c); }); in ElementsIn()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/
H A Dunit_spirv.h206 capabilities.ForEach([&result](SpvCapability c) { result.push_back(c); }); in ElementsIn()
/third_party/googletest/googletest/src/
H A Dgtest-internal-inl.h286 void ForEach(const Container& c, Functor functor) { in ForEach() function
739 ForEach(test_suites_, TestSuite::ClearTestSuiteResult); in ClearNonAdHocTestResult()
H A Dgtest.cc159 using internal::ForEach;
2953 ForEach(test_info_list_, internal::Delete<TestInfo>);
3064 ForEach(test_info_list_, TestInfo::ClearTestResult);
3800 ForEach(listeners_, Delete<TestEventListener>);
5562 ForEach(test_suites_, internal::Delete<TestSuite>);
5565 ForEach(environments_, internal::Delete<Environment>);
5757 // are for use in the ForEach() function.
5871 ForEach(environments_, SetUpEnvironment);
/third_party/node/deps/googletest/src/
H A Dgtest-internal-inl.h287 void ForEach(const Container& c, Functor functor) { in ForEach() function
740 ForEach(test_suites_, TestSuite::ClearTestSuiteResult); in ClearNonAdHocTestResult()
/third_party/mesa3d/src/gtest/src/
H A Dgtest-internal-inl.h293 void ForEach(const Container& c, Functor functor) { in ForEach() function
728 ForEach(test_suites_, TestSuite::ClearTestSuiteResult); in ClearNonAdHocTestResult()
/third_party/skia/third_party/externals/spirv-tools/source/val/
H A Dvalidate_instruction.cpp47 capabilities.ForEach([&grammar, &ss](SpvCapability cap) { in ToString()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/
H A Dvalidate_instruction.cpp47 capabilities.ForEach([&grammar, &ss](SpvCapability cap) { in ToString()

Completed in 37 milliseconds

12