/external/chromium_org/v8/test/webkit/ |
array-reduce.js | 28 function toObject(array) { 52 shouldBe("toObject([0,1,2,3]).reduce(function(a,b){ return a + b; })", "6"); 53 shouldBe("toObject([1,2,3]).reduce(function(a,b){ return a + b; })", "6"); 54 shouldBe("toObject([0,1,2,3]).reduce(function(a,b){ return a + b; }, 4)", "10"); 55 shouldBe("toObject([1,2,3]).reduce(function(a,b){ return a + b; }, 4)", "10"); 63 shouldBe("toObject(sparseArray).reduce(function(a,b){ return a + b; }, 0)", "10"); 67 shouldBe("toObject(sparseArray).reduce(function(a,b){ callCount++; }); callCount", "0"); 71 shouldBe("toObject(sparseArray).reduce(function(a,b){ callCount++; }, 0); callCount", "1"); 81 shouldBe("toObject([1, 2, 3, 4]).reduce(function(a,b, i, thisObj){ thisObj.length--; callCount++; return a + b; }, 0); callCount", "4"); 83 shouldBe("toObject([1, 2, 3, 4]).reduce(function(a,b, i, thisObj){ thisObj.length++; callCount++; return a + b; }, 0) (…) [all...] |
array-reduceRight.js | 28 function toObject(array) { 52 shouldBe("toObject([0,1,2,3]).reduceRight(function(a,b){ return a + b; })", "6"); 53 shouldBe("toObject([1,2,3]).reduceRight(function(a,b){ return a + b; })", "6"); 54 shouldBe("toObject([0,1,2,3]).reduceRight(function(a,b){ return a + b; }, 4)", "10"); 55 shouldBe("toObject([1,2,3]).reduceRight(function(a,b){ return a + b; }, 4)", "10"); 63 shouldBe("toObject(sparseArray).reduceRight(function(a,b){ return a + b; }, 0)", "10"); 67 shouldBe("toObject(sparseArray).reduceRight(function(a,b){ callCount++; }); callCount", "0"); 71 shouldBe("toObject(sparseArray).reduceRight(function(a,b){ callCount++; }, 0); callCount", "1"); 83 shouldBe("toObject([1, 2, 3, 4]).reduceRight(function(a,b, i, thisObj){ thisObj.length--; callCount++; return a + b; }, 0); callCount", "4"); 85 shouldBe("toObject([1, 2, 3, 4]).reduceRight(function(a,b, i, thisObj){ thisObj.length++; callCount++; return a + b; (…) [all...] |
array-filter.js | 40 function toObject(array) { 49 var obj = toObject(array); 77 shouldBe("toObject([undefined]).filter(passUndefined)", "[undefined]"); 78 shouldBe("toObject(new Array(20)).filter(passUndefined)", "[]"); 79 shouldBe("toObject([0,1,2,3,4,5,6,7,8,9]).filter(passEven)", "[0,2,4,6,8]"); 80 shouldBe("toObject([0,1,2,3,4,5,6,7,8,9]).filter(passAfter5)", "[5,6,7,8,9]"); 81 shouldBe("toObject(mixPartialAndFast).filter(passAfter5)", "[5,6,7,8,9,sparseArrayLength-1]");
|
array-enumerators-functions.js | 39 function toObject(array) { 91 "count=0;lastIndex=-1;Array.prototype."+functionName+".call(toObject("+arrays[a]+"), forwarders[f], "+testFunctions[t]+", 0)"); 141 shouldBe("count=0;lastIndex=-1;Array.prototype."+functionName+".call(toObject("+arrays[a]+"), forwarders[f], "+testFunctions[t]+", 0); count", expectedCnt); 142 shouldBe("count=0;lastIndex=-1;Array.prototype."+functionName+".call(toObject("+arrays[a]+"), forwarders[f], "+testFunctions[t]+", 0); count", expectedCnt);
|
/external/chromium_org/chrome/browser/ui/cocoa/location_bar/ |
autocomplete_text_field_unittest_helper.h | 22 - (id)windowWillReturnFieldEditor:(NSWindow *)sender toObject:(id)anObject;
|
/cts/tests/tests/hardware/src/android/hardware/camera2/cts/helpers/ |
StaticMetadata.java | 467 Arrays.asList(CameraTestUtils.toObject(getAeAvailableAntiBandingModesChecked())); 494 Integer[] boxedModes = CameraTestUtils.toObject(modes); 545 checkElementDistinct(key, Arrays.asList(CameraTestUtils.toObject(focalLengths))); 566 checkElementDistinct(key, Arrays.asList(CameraTestUtils.toObject(apertures))); 584 List<Integer> modeList = Arrays.asList(CameraTestUtils.toObject(modes)); 609 List<Integer> modeList = Arrays.asList(CameraTestUtils.toObject(modes)); 633 Arrays.asList(CameraTestUtils.toObject(getAvailableFaceDetectModesChecked())); 666 List<Integer> modeList = Arrays.asList(CameraTestUtils.toObject(modes)); 697 Arrays.asList(CameraTestUtils.toObject(getAvailableToneMapModesChecked())); [all...] |
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-1200351.js | 80 eval("unescape(break.toObject()).prototype.new RegExp.continue.__lookupGetter__(x.slice(1, NaN)) = typeof(null.push(0.2))") 136 eval("x = return debugger.toObject()") 196 eval("for (new RegExp.join().className() in new Object().length()>>true.toObject()) { parseFloat(escape(debugger)) }") 236 eval("for (null.size/true.add(void) in 0+continue&true.null) { continue.toObject()/throw new true(debugger) }") 252 eval("switch (parseInt(0).length()) { case ('a'.toObject().__defineSetter__(GetFunctionFor(null),function(){(!x)})): IsSmi(void).constructor; break; }") 260 eval("with ({ 0>>>=this.lastIndex : new Object().lastIndexOf(true).toObject() }) { x.lastIndex > 1.__defineSetter__(false,function(){this}) }") 332 eval("for (debugger==continue.toObject(), Array(NaN.className()), Math.max(new RegExp).prototype.value) { GetFunctionFor('a').prototype.value }") 352 eval("for (void==NaN.sort(), new Object()==new RegExp.toObject(), -1/NaN.unshift()) { GetFunctionFor(true).name() }") 356 eval("for ((!'a'.join()), ~NaN.__defineGetter__(undef,function(){this}), Math.pow(NaN).__lookupGetter__(typeof(false))) { throw new debugger.toObject()(Math.max(-1)) }") 440 eval("const x = new GetFunctionFor(0.2).toObject()") [all...] |
/cts/tests/tests/hardware/src/android/hardware/camera2/cts/ |
StaticMetadataTest.java | 316 Arrays.asList(CameraTestUtils.toObject(tonemapModes)); 323 Arrays.asList(CameraTestUtils.toObject(colorAberrationModes));
|
CameraDeviceTest.java | [all...] |
CameraTestUtils.java | 727 public static Byte[] toObject(byte[] array) { 737 public static Integer[] toObject(int[] array) { 747 public static Float[] toObject(float[] array) { 757 public static Double[] toObject(double[] array) { [all...] |
CaptureRequestTest.java | 627 mCollector.checkArrayMonotonicityAndNotAllEqual(CameraTestUtils.toObject(resultDistances), [all...] |
StillCaptureTest.java | [all...] |
/external/owasp/sanitizer/tools/findbugs/lib/ |
commons-lang-2.6.jar | |
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/ |
prototype-1.6.0.3.js | 1006 this._object = Object.isHash(object) ? object.toObject() : Object.clone(object); 1034 toObject: function() { 1083 return Object.toJSON(this.toObject()); 1092 Hash.prototype.toTemplateReplacements = Hash.prototype.toObject; 1186 this.options.parameters = this.options.parameters.toObject(); [all...] |
concat-jquery-mootools-prototype.js | [all...] |
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/lib/ |
prototype-1.7.js | 1228 this._object = Object.isHash(object) ? object.toObject() : Object.clone(object); 1256 function toObject() { [all...] |
/external/chromium_org/chrome/third_party/chromevox/ |
chromeVoxChromeBackgroundScript.js | [all...] |
chromeVoxChromeOptionsScript.js | [all...] |
chromeVoxChromePageScript.js | [all...] |