Home
last modified time | relevance | path

Searched refs:for_each (Results 1 – 25 of 96) sorted by relevance

1234

/external/Reactive-Extensions/RxCpp/Rx/v2/examples/doxygen/
Dbuffer.cpp13 std::for_each(v.begin(), v.end(), [](int a){ in __anondc76502b0102()
29 std::for_each(v.begin(), v.end(), [](int a){ in __anondc76502b0402()
57 std::for_each(v.begin(), v.end(), [](long a){ in __anondc76502b0802()
78 std::for_each(v.begin(), v.end(), [](long a){ in __anondc76502b0b02()
98 std::for_each(v.begin(), v.end(), [](long a){ in __anondc76502b0e02()
117 std::for_each(v.begin(), v.end(), [](long a){ in __anondc76502b1102()
136 std::for_each(v.begin(), v.end(), [](long a){ in __anondc76502b1402()
154 std::for_each(v.begin(), v.end(), [](long a){ in __anondc76502b1702()
175 std::for_each(v.begin(), v.end(), [](long a){ in __anondc76502b1a02()
195 std::for_each(v.begin(), v.end(), [](long a){ in __anondc76502b1d02()
/external/swiftshader/third_party/LLVM/lib/VMCore/
DLLVMContextImpl.cpp60 std::for_each(ExprConstants.map_begin(), ExprConstants.map_end(), in ~LLVMContextImpl()
62 std::for_each(ArrayConstants.map_begin(), ArrayConstants.map_end(), in ~LLVMContextImpl()
64 std::for_each(StructConstants.map_begin(), StructConstants.map_end(), in ~LLVMContextImpl()
66 std::for_each(VectorConstants.map_begin(), VectorConstants.map_end(), in ~LLVMContextImpl()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
DParallel.h162 TG.spawn([=, &Fn] { std::for_each(Begin, Begin + TaskSize, Fn); }); in parallel_for_each()
165 std::for_each(Begin, End, Fn); in parallel_for_each()
207 void for_each(Policy policy, IterTy Begin, IterTy End, FuncTy Fn) { in for_each() function
210 std::for_each(Begin, End, Fn); in for_each()
232 void for_each(parallel_execution_policy policy, IterTy Begin, IterTy End, in for_each() function
/external/libcxx/test/std/algorithms/alg.nonmodifying/alg.foreach/
Dtest.pass.cpp28 std::for_each(std::begin(ia), std::end(ia), [](int &a) { a += 2; }); in test_constexpr()
45 for_each_test f = std::for_each(input_iterator<int*>(ia), in main()
/external/webrtc/webrtc/common_audio/
Dreal_fourier_ooura.cc26 std::for_each(array, array + complex_length, in Conjugate()
82 std::for_each(dest, dest + length_, [scale](float& v) { v *= scale; }); in Inverse()
/external/deqp-deps/glslang/SPIRV/
DSpvPostProcess.cpp236 std::for_each(decorations.begin(), decorations.end(), function); in postProcess()
249 std::for_each(decorations.begin(), decorations.end(), function); in postProcess()
335 std::for_each(block->getInstructions().begin(), block->getInstructions().end(), function); in postProcess()
362 std::for_each(decorations.begin(), decorations.end(), function); in postProcess()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
DMachineOutliner.h146 std::for_each(MBB->rbegin(), (MachineBasicBlock::reverse_iterator)front(), in initLRU()
152 std::for_each(front(), std::next(back()), in initLRU()
/external/llvm/lib/Transforms/Utils/
DSplitModule.cpp128 std::for_each(M->begin(), M->end(), recordGVSet); in findPartitions()
129 std::for_each(M->global_begin(), M->global_end(), recordGVSet); in findPartitions()
130 std::for_each(M->alias_begin(), M->alias_end(), recordGVSet); in findPartitions()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
DSplitModule.cpp148 llvm::for_each(M->functions(), recordGVSet); in findPartitions()
149 llvm::for_each(M->globals(), recordGVSet); in findPartitions()
150 llvm::for_each(M->aliases(), recordGVSet); in findPartitions()
/external/swiftshader/third_party/LLVM/tools/llvm-nm/
Dllvm-nm.cpp263 std::for_each (M->begin(), M->end(), DumpSymbolNameForGlobalValue); in DumpSymbolNamesFromModule()
264 std::for_each (M->global_begin(), M->global_end(), in DumpSymbolNamesFromModule()
266 std::for_each (M->alias_begin(), M->alias_end(), in DumpSymbolNamesFromModule()
389 std::for_each(InputFilenames.begin(), InputFilenames.end(), in main()
/external/deqp-deps/glslang/glslang/MachineIndependent/
Diomapper.cpp798 std::for_each(inVarMap.begin(), inVarMap.end(), inOutNotify); in addStage()
799 std::for_each(outVarMap.begin(), outVarMap.end(), inOutNotify); in addStage()
800 std::for_each(uniformVarMap.begin(), uniformVarMap.end(), uniformNotify); in addStage()
803 std::for_each(inVarMap.begin(), inVarMap.end(), inOutResolve); in addStage()
804 std::for_each(outVarMap.begin(), outVarMap.end(), inOutResolve); in addStage()
805 std::for_each(uniformVarMap.begin(), uniformVarMap.end(), uniformResolve); in addStage()
/external/ImageMagick/Magick++/demo/
Ddemo.cpp467 for_each( images.begin(), images.end(), strokeColorImage( Color("#600") ) ); in main()
495 for_each( montage.begin(), montage.end(), depthImage(8) ); in main()
496 for_each( montage.begin(), montage.end(), alphaImage( false ) ); in main()
497 for_each( montage.begin(), montage.end(), compressTypeImage( RLECompression) ); in main()
Dflip.cpp41 for_each( imageList.begin(), imageList.end(), flipImage() ); in main()
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
DSTLExtrasTest.cpp258 TEST(STLExtrasTest, for_each) { in TEST() argument
262 llvm::for_each(v, [&count](int) { ++count; }); in TEST()
363 llvm::for_each(s, [&count](int) { ++count; }); in TEST()
/external/swiftshader/third_party/LLVM/lib/DebugInfo/
DDWARFDebugAranges.cpp75 std::for_each(sets.begin(), sets.end(), CountArangeDescriptors(count)); in extract()
80 std::for_each(sets.begin(), sets.end(), range_adder); in extract()
/external/llvm/lib/LTO/
DLTOCodeGenerator.cpp487 std::for_each(MergedModule->begin(), MergedModule->end(), externalize); in restoreLinkageForExternals()
488 std::for_each(MergedModule->global_begin(), MergedModule->global_end(), in restoreLinkageForExternals()
490 std::for_each(MergedModule->alias_begin(), MergedModule->alias_end(), in restoreLinkageForExternals()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/LTO/
DLTOCodeGenerator.cpp472 llvm::for_each(MergedModule->functions(), externalize); in restoreLinkageForExternals()
473 llvm::for_each(MergedModule->globals(), externalize); in restoreLinkageForExternals()
474 llvm::for_each(MergedModule->aliases(), externalize); in restoreLinkageForExternals()
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/operators/
Drx-amb.hpp181 …std::for_each(state->innerSubscriptions.begin(), state->innerSubscriptions.begin() + current_id, d… in on_subscribe()
182 …std::for_each(state->innerSubscriptions.begin() + current_id + 1, state->innerSubscriptions.end(),… in on_subscribe()
/external/swiftshader/third_party/LLVM/tools/llvm-dwarfdump/
Dllvm-dwarfdump.cpp113 std::for_each(InputFilenames.begin(), InputFilenames.end(), DumpInput); in main()
/external/swiftshader/third_party/subzero/src/
DIceSwitchLowering.cpp43 std::for_each(Active + 1, CaseClusters.end(), in clusterizeSwitch()
/external/Reactive-Extensions/RxCpp/Rx/v2/test/sources/
Dscope.cpp26 std::for_each(values.begin(), values.end(), [&](int &v){ in __anonbc61a3d20102()
87 std::for_each(values.begin(), values.end(), [&](int &v){ in __anonbc61a3d20502()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/
Dllvm-readobj.cpp440 llvm::for_each(opts::StringDump, [&Dumper, Obj](StringRef SectionName) { in dumpObject()
444 llvm::for_each(opts::HexDump, [&Dumper, Obj](StringRef SectionName) { in dumpObject()
606 llvm::for_each(opts::InputFilenames, dumpInput); in main()
/external/Reactive-Extensions/RxCpp/Rx/v2/test/operators/
Dbuffer.cpp487 std::for_each(counter.begin(), counter.end(), [](long c){ in __anon79d0578d0a02()
530 std::for_each(counter.begin(), counter.end(), [](long c){ in __anon79d0578d0e02()
574 std::for_each(counter.begin(), counter.end(), [](long c){ in __anon79d0578d1202()
618 std::for_each(counter.begin(), counter.end(), [](long c){ in __anon79d0578d1602()
665 std::for_each(counter.begin(), counter.end(), [](long c){ in __anon79d0578d1a02()
/external/webrtc/webrtc/base/
Dfakesslidentity.h77 std::for_each(new_certs.begin(), new_certs.end(), DeleteCert); in GetChain()
/external/mesa3d/src/gallium/state_trackers/clover/util/
Dalgorithm.hpp102 for_each(F &&f, Rs &&... rs) { in for_each() function

1234