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

1 2 3 4 5 6 7 8 91011>>

  /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);
ScriptIntrinsicBlur.java 90 public void forEach(Allocation aout) {
91 forEach(0, null, aout, null);
ScriptIntrinsicConvolve3x3.java 110 public void forEach(Allocation aout) {
111 forEach(0, null, aout, null);
ScriptIntrinsicConvolve5x5.java 111 public void forEach(Allocation aout) {
112 forEach(0, null, aout, null);
ScriptIntrinsicLUT.java 127 public void forEach(Allocation ain, Allocation aout) {
132 forEach(0, ain, aout, null);
  /external/chromium_org/tools/perf/utils/results_viewer/src/
results_viewer.js 38 rows.forEach(function (row, index, array) {
45 columns.forEach(function (element, index, array) {
  /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());
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ClearObjectTest.java 43 public void forEach(int testId, Allocation mIn, Allocation mOut) throws RSRuntimeException {
69 RSUtils.forEach(this, TEST_ID_ELEMENT, mIn, mOut);
86 RSUtils.forEach(this, TEST_ID_TYPE, mIn, mOut);
102 RSUtils.forEach(this, TEST_ID_ALLOCATION, mIn, mOut);
118 RSUtils.forEach(this, TEST_ID_SAMPLER, mIn, mOut);
134 RSUtils.forEach(this, TEST_ID_SCRIPT, mIn, mOut);
RSUtils.java 83 public static void forEach(RSBaseCompute base, int testId, Allocation in) throws RSRuntimeException {
84 base.forEach(testId, in);
87 public static void forEach(RSBaseCompute base, int testId, Allocation in, Allocation out)
89 base.forEach(testId, in,out);
AllocationResize.java 32 public void forEach(int testId, Allocation mIn, Allocation mOut) throws RSRuntimeException {
52 RSUtils.forEach(this, 0, mIn, mOut);
InitTest.java 30 public void forEach(int testId, Allocation mIn, Allocation mOut) throws RSRuntimeException {
49 RSUtils.forEach(this, 0, mIn, mOut);
  /external/chromium_org/chrome/renderer/resources/extensions/
utils.js 9 // An object forEach. Calls |f| with each (key, value) pair of |obj|, using
11 function forEach(obj, f, self) {
54 exports.forEach = forEach;
  /external/chromium_org/third_party/WebKit/PerformanceTests/DOM/resources/dom-perf/
clonenodes.js 93 CloneNodes.prototype.Sizes.forEach(function(size) {
94 CloneNodes.prototype.Styles.forEach(function(style) {
  /external/chromium_org/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); });
  /external/skia/gm/viewer/
module.js 52 angular.forEach(response['actual-results'], function(resultsOfThisType, resultType) {
54 angular.forEach(resultsOfThisType, function(hashTypeAndValue, imageName) {
  /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); });
  /frameworks/rs/cpp/
ScriptIntrinsics.cpp 47 void ScriptIntrinsic3DLUT::forEach(sp<Allocation> ain, sp<Allocation> aout) {
50 mRS->throwError(RS_ERROR_INVALID_ELEMENT, "3DLUT forEach element mismatch");
53 Script::forEach(0, ain, aout, NULL, 0);
86 Script::forEach(0, in, out, NULL, 0);
94 Script::forEach(1, in, out, NULL, 0);
102 Script::forEach(2, in, out, NULL, 0);
110 Script::forEach(3, in, out, NULL, 0);
118 Script::forEach(4, in, out, NULL, 0);
126 Script::forEach(5, in, out, NULL, 0);
134 Script::forEach(6, in, out, NULL, 0)
    [all...]

Completed in 1207 milliseconds

1 2 3 4 5 6 7 8 91011>>