/external/chromium_org/v8/test/webkit/ |
array-reduce.js | 77 shouldBe("[1, 2, 3, 4].reduce(function(a,b, i, thisObj){ thisObj.length--; callCount++; return a + b; }, 0); callCount", "2"); 79 shouldBe("[1, 2, 3, 4].reduce(function(a,b, i, thisObj){ thisObj.length++; callCount++; return a + b; }, 0); callCount", "4"); 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); callCount", "4");
|
array-reduceRight.js | 77 shouldBe("[1, 2, 3, 4].reduceRight(function(a,b, i, thisObj){ thisObj.length--; callCount++; return a + b; }, 0); callCount", "4"); 79 shouldBe("[1, 2, 3, 4].reduceRight(function(a,b, i, thisObj){ thisObj.length = 1; callCount++; return a + b; }, 0); callCount", "2"); 81 shouldBe("[1, 2, 3, 4].reduceRight(function(a,b, i, thisObj){ thisObj.length++; callCount++; return a + b; }, 0); callCount", "4"); 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; }, 0); callCount", "4") [all...] |
/art/compiler/jni/ |
jni_compiler_test.cc | 123 void Java_MyClassNatives_foo(JNIEnv* env, jobject thisObj) { 124 // 1 = thisObj 129 EXPECT_TRUE(thisObj != NULL); 130 EXPECT_TRUE(env->IsInstanceOf(thisObj, JniCompilerTest::jklass_)); 177 jint Java_MyClassNatives_fooI(JNIEnv* env, jobject thisObj, jint x) { 178 // 1 = thisObj 182 EXPECT_TRUE(thisObj != NULL); 183 EXPECT_TRUE(env->IsInstanceOf(thisObj, JniCompilerTest::jklass_)); 203 jint Java_MyClassNatives_fooII(JNIEnv* env, jobject thisObj, jint x, jint y) { 204 // 1 = thisObj [all...] |
/dalvik/vm/ |
Debugger.cpp | [all...] |
/dalvik/vm/reflect/ |
Proxy.cpp | 873 Object* thisObj = (Object*) args[0]; 885 handler = dvmGetFieldObject(thisObj, gDvm.offJavaLangReflectProxy_h); 901 thisObj, handler->clazz->descriptor); [all...] |
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/lib/ |
dojo-1.6.1.js | [all...] |
/cts/suite/cts/deviceTests/browserbench/assets/octane/ |
gbemu.js | 687 var thisObj = this; 707 thisObj.audioHandleFlash = event.ref; 710 thisObj.audioType = 1; [all...] |