HomeSort by relevance Sort by last modified time
    Searched defs:forEach (Results 26 - 50 of 65) sorted by null

12 3

  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
ScriptIntrinsicBlur.java 94 public void forEach(Allocation aout) {
95 forEach(0, null, aout, null);
ScriptIntrinsicConvolve3x3.java 105 public void forEach(Allocation aout) {
106 forEach(0, null, aout, null);
ScriptIntrinsicConvolve5x5.java 101 public void forEach(Allocation aout) {
102 forEach(0, null, aout, null);
ScriptIntrinsic3DLUTThunker.java 58 public void forEach(Allocation ain, Allocation aout) {
61 mN.forEach(aint.getNObj(), aoutt.getNObj());
ScriptIntrinsicBlurThunker.java 53 public void forEach(Allocation aout) {
56 mN.forEach(aoutt.getNObj());
ScriptIntrinsicColorMatrix.java 156 public void forEach(Allocation ain, Allocation aout) {
157 forEach(0, ain, aout, null);
ScriptIntrinsicConvolve3x3Thunker.java 51 public void forEach(Allocation aout) {
53 mN.forEach(aoutt.getNObj());
ScriptIntrinsicConvolve5x5Thunker.java 51 public void forEach(Allocation aout) {
53 mN.forEach(aoutt.getNObj());
ScriptIntrinsicLUT.java 133 public void forEach(Allocation ain, Allocation aout) {
138 forEach(0, ain, aout, null);
ScriptIntrinsicYuvToRGBThunker.java 47 public void forEach(Allocation aout) {
ScriptCThunker.java 92 forEach(slot, nin, nout, nfp);
117 forEach(slot, nin, nout, nfp, lo);
ScriptIntrinsicColorMatrixThunker.java 63 public void forEach(Allocation ain, Allocation aout) {
66 mN.forEach(aint.getNObj(), aoutt.getNObj());
ScriptIntrinsicLUTThunker.java 57 public void forEach(Allocation ain, Allocation aout) {
60 mN.forEach(aint.getNObj(), aoutt.getNObj());
ScriptIntrinsicBlend.java 55 forEach(id, ain, aout, null);
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
ColorCube.java 82 mIntrinsic.forEach(mInPixelsAllocation, mOutPixelsAllocation);
GroupTest.java 88 mConvolve.forEach(mScratchPixelsAllocation1);
89 mMatrix.forEach(mScratchPixelsAllocation1, mOutPixelsAllocation);
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
ColorCube.java 73 mIntrinsic.forEach(mInPixelsAllocation, mOutPixelsAllocation);
GroupTest.java 81 mConvolve.forEach(mScratchPixelsAllocation1);
82 mMatrix.forEach(mScratchPixelsAllocation1, mOutPixelsAllocation);
  /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);
MarkedBlock.h 77 template <typename Functor> void forEach(Functor&);
213 template <typename Functor> inline void MarkedBlock::forEach(Functor& functor)
  /frameworks/base/graphics/java/android/renderscript/
ScriptIntrinsicBlend.java 50 forEach(id, ain, aout, null);
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
GroupTest.java 88 mConvolve.forEach(mScratchPixelsAllocation1);
89 mMatrix.forEach(mScratchPixelsAllocation1, mOutPixelsAllocation);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ImageProcessingTest.java 94 mBlur.forEach(a2_copy);
185 mColorMatrix.forEach(a1_copy, a2_copy);
196 mColorMatrix.forEach(a1_copy, a2_copy);
221 mConvolve3x3.forEach(a2_copy);
246 mConvolve5x5.forEach(a2_copy);
287 mLUT.forEach(a1_copy, a2_copy);
  /dalvik/dx/src/com/android/dx/cf/direct/
StdAttributeFactory.java 247 code.forEach(new CodeObserver(code.getBytes(), observer));

Completed in 555 milliseconds

12 3