HomeSort by relevance Sort by last modified time
    Searched refs:forEach (Results 1 - 25 of 128) sorted by null

1 2 3 4 5 6

  /frameworks/rs/cpp/
ScriptIntrinsics.cpp 37 Script::forEach(0, in, out, NULL, 0);
41 Script::forEach(1, in, out, NULL, 0);
45 Script::forEach(2, in, out, NULL, 0);
49 Script::forEach(3, in, out, NULL, 0);
53 Script::forEach(4, in, out, NULL, 0);
57 Script::forEach(5, in, out, NULL, 0);
61 Script::forEach(6, in, out, NULL, 0);
65 Script::forEach(7, in, out, NULL, 0);
69 Script::forEach(8, in, out, NULL, 0);
73 Script::forEach(9, in, out, NULL, 0)
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
ScriptIntrinsicYuvToRGB.java 68 public void forEach(Allocation aout) {
69 forEach(0, null, aout, null);
ScriptIntrinsic3DLUT.java 88 public void forEach(Allocation ain, Allocation aout) {
89 forEach(0, ain, aout, null);
ScriptIntrinsicConvolve5x5.java 97 public void forEach(Allocation aout) {
98 forEach(0, null, aout, null);
ScriptIntrinsicBlur.java 90 public void forEach(Allocation aout) {
91 forEach(0, null, aout, null);
ScriptIntrinsicConvolve3x3.java 100 public void forEach(Allocation aout) {
101 forEach(0, null, aout, null);
ScriptIntrinsicLUT.java 127 public void forEach(Allocation ain, Allocation aout) {
132 forEach(0, ain, aout, null);
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_6/Regress/
regress-320172.js 49 (function xxx(){ ["var x"].forEach(eval); })();
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
ScriptIntrinsicYuvToRGB.java 73 public void forEach(Allocation aout) {
74 forEach(0, null, aout, null);
ScriptIntrinsic3DLUT.java 95 public void forEach(Allocation ain, Allocation aout) {
96 forEach(0, ain, aout, null);
ScriptIntrinsic3DLUTThunker.java 58 public void forEach(Allocation ain, Allocation aout) {
61 mN.forEach(aint.getNObj(), aoutt.getNObj());
ScriptIntrinsicBlur.java 94 public void forEach(Allocation aout) {
95 forEach(0, null, aout, null);
ScriptIntrinsicBlurThunker.java 53 public void forEach(Allocation aout) {
56 mN.forEach(aoutt.getNObj());
ScriptIntrinsicColorMatrixThunker.java 63 public void forEach(Allocation ain, Allocation aout) {
66 mN.forEach(aint.getNObj(), aoutt.getNObj());
ScriptIntrinsicConvolve3x3.java 105 public void forEach(Allocation aout) {
106 forEach(0, null, aout, null);
ScriptIntrinsicConvolve3x3Thunker.java 51 public void forEach(Allocation aout) {
53 mN.forEach(aoutt.getNObj());
ScriptIntrinsicConvolve5x5.java 101 public void forEach(Allocation aout) {
102 forEach(0, null, aout, null);
ScriptIntrinsicConvolve5x5Thunker.java 51 public void forEach(Allocation aout) {
53 mN.forEach(aoutt.getNObj());
ScriptIntrinsicLUTThunker.java 57 public void forEach(Allocation ain, Allocation aout) {
60 mN.forEach(aint.getNObj(), aoutt.getNObj());
  /external/v8/test/mjsunit/regress/
regress-1447.js 28 [0].forEach(function(){ Object.freeze(Array.prototype.forEach); });
33 [0].forEach(function(){ Object.freeze(Array.prototype.forEach); });
regress-1436.js 60 [2, 3].forEach(non_strict);
61 [2, 3].forEach(non_strict, undefined);
62 [2, 3].forEach(non_strict, null);
63 [2, 3].forEach(strict);
64 [2, 3].forEach(strict, undefined);
65 [2, 3].forEach(strict_null, null);
  /external/webkit/Source/JavaScriptCore/heap/
Heap.h 100 template <typename Functor> void forEach(Functor&);
171 template <typename Functor> inline void Heap::forEach(Functor& functor)
173 m_markedSpace.forEach(functor);
MarkedSpace.h 80 template<typename Functor> void forEach(Functor&);
152 template <typename Functor> inline void MarkedSpace::forEach(Functor& functor)
156 (*it)->forEach(functor);
  /external/webkit/Source/JavaScriptCore/profiler/
Profile.cpp 52 void Profile::forEach(void (ProfileNode::*function)())
79 forEach(&ProfileNode::calculateVisibleTotalTime);
99 forEach(&ProfileNode::restore);
Profile.h 47 void forEach(void (ProfileNode::*)());

Completed in 266 milliseconds

1 2 3 4 5 6