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

1 2 3

  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_6/Array/
regress-304828.js 208 // forEach
214 Array.prototype.forEach.call(value,
222 reportCompare(expect, actual, summary + ': forEach');
  /frameworks/rs/cpp/
Script.cpp 29 void Script::forEach(uint32_t slot, sp<const Allocation> ain, sp<const Allocation> aout,
  /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/util/
sorttable.js 42 forEach(document.getElementsByTagName('table'), function(table) {
131 forEach(theadrow.childNodes, function(cell) {
437 // Dean's forEach: http://dean.edwards.name/base/forEach.js
439 forEach, version 1.0
445 if (!Array.forEach) { // mozilla already supports this
446 Array.forEach = function(array, block, context) {
454 Function.prototype.forEach = function(object, block, context) {
463 String.forEach = function(string, block, context) {
464 Array.forEach(string.split(""), function(chr, index)
    [all...]
  /external/clang/tools/scan-build/
sorttable.js 34 forEach(document.getElementsByTagName('table'), function(table) {
123 forEach(theadrow.childNodes, function(cell) {
440 // Dean's forEach: http://dean.edwards.name/base/forEach.js
442 forEach, version 1.0
448 if (!Array.forEach) { // mozilla already supports this
449 Array.forEach = function(array, block, context) {
457 Function.prototype.forEach = function(object, block, context) {
466 String.forEach = function(string, block, context) {
467 Array.forEach(string.split(""), function(chr, index)
    [all...]
  /frameworks/base/tools/preload/
sorttable.js 34 forEach(document.getElementsByTagName('table'), function(table) {
123 forEach(theadrow.childNodes, function(cell) {
440 // Dean's forEach: http://dean.edwards.name/base/forEach.js
442 forEach, version 1.0
448 if (!Array.forEach) { // mozilla already supports this
449 Array.forEach = function(array, block, context) {
457 Function.prototype.forEach = function(object, block, context) {
466 String.forEach = function(string, block, context) {
467 Array.forEach(string.split(""), function(chr, index)
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
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 100 public void forEach(Allocation aout) {
101 forEach(0, null, aout, null);
ScriptIntrinsicConvolve5x5.java 97 public void forEach(Allocation aout) {
98 forEach(0, null, aout, null);
ScriptIntrinsicYuvToRGB.java 68 public void forEach(Allocation aout) {
69 forEach(0, null, aout, null);
ScriptIntrinsicColorMatrix.java 151 public void forEach(Allocation ain, Allocation aout) {
152 forEach(0, ain, aout, null);
ScriptIntrinsicLUT.java 127 public void forEach(Allocation ain, Allocation aout) {
132 forEach(0, ain, aout, null);
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
ScriptIntrinsic3DLUT.java 95 public void forEach(Allocation ain, Allocation aout) {
96 forEach(0, ain, aout, null);
ScriptIntrinsicYuvToRGB.java 73 public void forEach(Allocation aout) {
74 forEach(0, null, aout, null);
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
InsnList.java 72 public void forEach(Insn.Visitor visitor) {
  /dalvik/dx/src/com/android/dx/rop/code/
InsnList.java 72 public void forEach(Insn.Visitor visitor) {
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
InsnList.java 72 public void forEach(Insn.Visitor visitor) {
  /external/webkit/Source/JavaScriptCore/profiler/
Profile.cpp 52 void Profile::forEach(void (ProfileNode::*function)())
79 forEach(&ProfileNode::calculateVisibleTotalTime);
99 forEach(&ProfileNode::restore);
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
ColorMatrix.java 64 mIntrinsic.forEach(mInPixelsAllocation, mOutPixelsAllocation);
CrossProcess.java 60 mIntrinsic.forEach(mInPixelsAllocation, mOutPixelsAllocation);
UsageIO.java 63 mMatrix.forEach(mScratchPixelsAllocation2, mOutPixelsAllocation);
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
ColorMatrix.java 56 mIntrinsic.forEach(mInPixelsAllocation, mOutPixelsAllocation);
CrossProcess.java 57 mIntrinsic.forEach(mInPixelsAllocation, mOutPixelsAllocation);
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
ColorMatrix.java 64 mIntrinsic.forEach(mInPixelsAllocation, mOutPixelsAllocation);
CrossProcess.java 60 mIntrinsic.forEach(mInPixelsAllocation, mOutPixelsAllocation);

Completed in 396 milliseconds

1 2 3