Searched defs:o3 (Results 1 - 7 of 7) sorted by relevance

/external/v8/test/mjsunit/compiler/
H A Dpic.js53 var o3 = { y: 1, z: 2, x: 0 };
54 o1.f = o2.f = o3.f = function() { return 99; }
61 Test(o3);
66 Test(o3);
H A Dinline-two.js69 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
[all...]
H A Dsimple-inlining.js88 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/
H A Darray-tostring.js84 var o3 = {length: 3, 0: 1, 1: 2, 2: 3,
87 expectedThis = o3;
88 assertEquals(success, o3.toString());
/external/webkit/LayoutTests/fast/js/resources/
H A Dcodegen-temporaries-multiple-global-blocks-2.js14 var o3 = { a: 1 };
15 var v3 = o3;
17 shouldBe("o3.a", "2");
/external/v8/test/cctest/
H A Dtest-debug.cc4350 v8::Handle<v8::Object> o3 = t3->GetFunction()->NewInstance(); local
4351 env->Global()->Set(v8::String::New("o3"), o3);
4358 "var o3_mirror = debug.MakeMirror(o3)");
4397 // Set o3 as prototype for o0 (it will end up after o1 and o2 as both o1 and
4398 // o2 has the hidden prototype flag. o3 does not have the hidden prototype
4399 // flag so properties on o3 should not be seen on o0 whereas the properties
4401 // Final prototype chain: o0 -> o1 -> o2 -> o3
4403 o0->Set(v8::String::New("__proto__"), o3);
4416 // The prototype (__proto__) for o0 should be o3 a
[all...]
H A Dtest-api.cc5423 CHECK_EQ(info.This(), global->Get(v8_str("o3")));
5438 "var o3 = { __proto__: o2 };"
5439 "var o4 = { __proto__: o3 };"
5441 "for (var i = 0; i < 10; i++) o3.p3;"
5458 CHECK_EQ(info.This(), global->Get(v8_str("o3")));
7691 Local<v8::Object> o3 = t3->GetFunction()->NewInstance(); local
7702 o0->Set(v8_str("__proto__"), o3);
7709 // which is o3. Therefore, z should not be defined on the prototype
7735 Local<v8::Object> o3 = t3->GetFunction()->NewInstance(); local
7746 CHECK(o2->SetPrototype(o3));
7805 Local<v8::Object> o3 = t3->GetFunction()->NewInstance(); local
[all...]

Completed in 165 milliseconds