/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSVariablesMap.h | 56 void forEach(PassOwnPtr<CSSVariablesMapForEachCallback>, ScriptValue& thisArg) const; 57 void forEach(PassOwnPtr<CSSVariablesMapForEachCallback>) const; 68 void forEach(PassOwnPtr<CSSVariablesMapForEachCallback>, ScriptValue* thisArg) const;
|
CSSVariablesMap.idl | 35 void forEach(CSSVariablesMapForEachCallback callback, optional any thisArg);
|
CSSVariablesMap.cpp | 92 void CSSVariablesMap::forEach(PassOwnPtr<CSSVariablesMapForEachCallback> callback, ScriptValue& thisArg) const 94 forEach(callback, &thisArg); 97 void CSSVariablesMap::forEach(PassOwnPtr<CSSVariablesMapForEachCallback> callback) const 99 forEach(callback, 0); 102 void CSSVariablesMap::forEach(PassOwnPtr<CSSVariablesMapForEachCallback> callback, ScriptValue* thisArg) const
|
/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);
|
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);
|
/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/ |
gcm_custom_bindings.js | 8 var forEach = require('utils').forEach; 18 forEach(message.data, function(property, value) {
|
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/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/expectations/gm/ |
loader.js | 30 angular.forEach(response['expected-results'], function(imageExpectations, imageName) { 33 angular.forEach(imageExpectations['allowed-digests'], function(allowedDigest, key) {
|
/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...] |