HomeSort by relevance Sort by last modified time
    Searched defs:o3 (Results 1 - 19 of 19) sorted by null

  /external/chromium_org/v8/test/mjsunit/compiler/
pic.js 53 var o3 = { y: 1, z: 2, x: 0 };
54 o1.f = o2.f = o3.f = function() { return 99; }
61 Test(o3);
66 Test(o3);
inline-two.js 69 var o3 = {};
70 o3.v = obj;
71 o3.h = function() { return this.v.foo(); };
72 for (var i = 0; i < 5; i++) TestInlineX2(o3);
74 TestInlineX2(o3);
75 TestInlineX2({h: o3.h, v:obj});
94 var o3 = {};
95 o3.v = obj;
96 o3.f = function() { return this.v; }
97 o3.h = function() { return this.f().g(); }
    [all...]
simple-inlining.js 88 var o3 = {y:0,x:42};
89 o3.h = function() { return this.x; };
90 for (var i = 0; i < 5; i++) TestInlineThisX(o3);
92 TestInlineThisX(o3);
93 TestInlineThisX({h: o3.h, x:42});
  /external/v8/test/mjsunit/compiler/
pic.js 53 var o3 = { y: 1, z: 2, x: 0 };
54 o1.f = o2.f = o3.f = function() { return 99; }
61 Test(o3);
66 Test(o3);
inline-two.js 69 var o3 = {};
70 o3.v = obj;
71 o3.h = function() { return this.v.foo(); };
72 for (var i = 0; i < 5; i++) TestInlineX2(o3);
74 TestInlineX2(o3);
75 TestInlineX2({h: o3.h, v:obj});
94 var o3 = {};
95 o3.v = obj;
96 o3.f = function() { return this.v; }
97 o3.h = function() { return this.f().g(); }
    [all...]
simple-inlining.js 88 var o3 = {y:0,x:42};
89 o3.h = function() { return this.x; };
90 for (var i = 0; i < 5; i++) TestInlineThisX(o3);
92 TestInlineThisX(o3);
93 TestInlineThisX({h: o3.h, x:42});
  /external/chromium_org/v8/test/webkit/
cyclic-prototypes.js 29 var o3 = { p3: 3 };
30 o3.__proto__ = o2;
33 shouldThrow("o1.__proto__ = o3;");
39 o1.__proto__ = o3;
dfg-check-two-structures.js 37 var o3 = {e:45, f:46};
51 o = o3;
delete-getters-setters.js 88 var o3 = { b: 1 };
89 o3.__defineGetter__("a", function() {});
90 o3.__defineGetter__("b", function() {});
91 delete o3.a;
92 shouldThrow("o3.b.property");
  /external/chromium_org/v8/test/mjsunit/
array-tostring.js 84 var o3 = {length: 3, 0: 1, 1: 2, 2: 3,
87 expectedThis = o3;
88 assertEquals(success, o3.toString());
  /external/v8/test/mjsunit/
array-tostring.js 84 var o3 = {length: 3, 0: 1, 1: 2, 2: 3,
87 expectedThis = o3;
88 assertEquals(success, o3.toString());
  /external/chromium_org/skia/ext/
skia_utils_win.cc 24 COMPILE_ASSERT(SK_OFFSETOF(RECT, right) == SK_OFFSETOF(SkIRect, fRight), o3); member in namespace:__anon12370
  /libcore/luni/src/test/java/tests/api/java/io/
ComputeSerialVersionUIDTest.java 19 SerializationTestClass.TestClassModifierAbstract o3 = (SerializationTestClass.TestClassModifierAbstract) ois local
35 SerializationTestClass.TestIntefacesAB o3 = (SerializationTestClass.TestIntefacesAB) ois local
67 SerializationTestClass.TestFieldsTwoFinal o3 = (SerializationTestClass.TestFieldsTwoFinal) ois local
105 SerializationTestClass.TestConstructorPrivate o3 = (SerializationTestClass.TestConstructorPrivate) ois local
127 SerializationTestClass.TestMethodFinal o3 = (SerializationTestClass.TestMethodFinal) ois local
  /external/guava/guava-tests/test/com/google/common/base/
ToStringHelperTest.java 123 Object o3 = new Object() {}; local
139 Object o3 = new Object() {}; local
  /libcore/luni/src/test/java/libcore/java/util/
ObjectsTest.java 40 String[] o3 = new String[] { "hello" }; local
48 assertTrue(Objects.deepEquals(o1, o3));
  /external/v8/test/cctest/
test-debug.cc 4350 v8::Handle<v8::Object> o3 = t3->GetFunction()->NewInstance(); local
    [all...]
test-api.cc 7691 Local<v8::Object> o3 = t3->GetFunction()->NewInstance(); local
7735 Local<v8::Object> o3 = t3->GetFunction()->NewInstance(); local
7805 Local<v8::Object> o3 = t3->GetFunction()->NewInstance(); local
    [all...]
  /external/chromium_org/v8/test/cctest/
test-debug.cc 4476 v8::Handle<v8::Object> o3 = t3->GetFunction()->NewInstance(); local
    [all...]
test-api.cc 9276 Local<v8::Object> o3 = t3->GetFunction()->NewInstance(); local
9380 Local<v8::Object> o3 = t3->GetFunction()->NewInstance(); local
9450 Local<v8::Object> o3 = t3->GetFunction()->NewInstance(); local
    [all...]

Completed in 561 milliseconds