HomeSort by relevance Sort by last modified time
    Searched defs:for_each (Results 1 - 4 of 4) sorted by null

  /external/mesa3d/src/gallium/state_trackers/clover/util/
algorithm.hpp 102 for_each(F &&f, Rs &&... rs) { function in namespace:clover
  /bionic/linker/
linked_list.h 155 void for_each(F action) const { function in class:LinkedList
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
Parallel.h 162 TG.spawn([=, &Fn] { std::for_each(Begin, Begin + TaskSize, Fn); });
165 std::for_each(Begin, End, Fn);
207 void for_each(Policy policy, IterTy Begin, IterTy End, FuncTy Fn) { function in namespace:llvm::parallel
210 std::for_each(Begin, End, Fn);
232 void for_each(parallel_execution_policy policy, IterTy Begin, IterTy End, function in namespace:llvm::parallel
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
STLExtras.h 141 // for_each(V.begin(), B.end(), deleter<Interval>);
911 /// Provide wrappers to std::for_each which take ranges instead of having to
914 UnaryPredicate for_each(R &&Range, UnaryPredicate P) { function in namespace:llvm
915 return std::for_each(adl_begin(Range), adl_end(Range), P);
    [all...]

Completed in 216 milliseconds