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

/external/chromium_org/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/chromium_org/v8/test/mjsunit/
H A Dkeyed-named-access.js10 var o3 = {x: 12, y: 20, z: 100};
32 f(o3);
33 f(o3);
34 f(o3);
36 assertEquals(1200, f(o3));
H A Darray-tostring.js84 var o3 = {length: 3, 0: 1, 1: 2, 2: 3,
87 expectedThis = o3;
88 assertEquals(success, o3.toString());
/external/chromium_org/v8/test/webkit/
H A Dcyclic-prototypes.js29 var o3 = { p3: 3 };
30 o3.__proto__ = o2;
33 shouldThrow("o1.__proto__ = o3;");
39 o1.__proto__ = o3;
H A Ddfg-check-two-structures.js37 var o3 = {e:45, f:46};
51 o = o3;
H A Ddelete-getters-setters.js88 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/regress/
H A Dcompare-map-elim1.js45 var o3 = {z:0, a:1.5};
55 foo2(o3);
/external/chromium_org/v8/test/mjsunit/es6/
H A Dmirror-collections.js45 var o3 = new Object(); class
59 map.set(o3, o2);
66 assertSame(o3, entries[1].key);
88 weakMap.set(o3, 33);
105 if (Object.is(entries[i].key, o3)) {
122 weakSet.add(o3);
137 if (Object.is(values[i], o3)) {
/external/chromium_org/skia/ext/
H A Dskia_utils_win.cc18 SK_COMPILE_ASSERT(offsetof(RECT, right) == offsetof(SkIRect, fRight), o3); member in namespace:__anon10683
/external/chromium_org/v8/test/cctest/
H A Dtest-debug.cc4542 v8::Handle<v8::Object> o3 = t3->GetFunction()->NewInstance(); local
4543 env->Global()->Set(v8::String::NewFromUtf8(isolate, "o3"), o3); local
4550 "var o3_mirror = debug.MakeMirror(o3)");
4589 // Set o3 as prototype for o0 (it will end up after o1 and o2 as both o1 and
4590 // o2 has the hidden prototype flag. o3 does not have the hidden prototype
4591 // flag so properties on o3 should not be seen on o0 whereas the properties
4593 // Final prototype chain: o0 -> o1 -> o2 -> o3
4595 o0->Set(v8::String::NewFromUtf8(isolate, "__proto__"), o3); local
4608 // The prototype (__proto__) for o0 should be o3 a
[all...]
H A Dtest-api.cc7704 CHECK_EQ(info.This(), global->Get(v8_str("o3")));
7718 "var o3 = { __proto__: o2 };"
7719 "var o4 = { __proto__: o3 };"
7721 "for (var i = 0; i < 10; i++) o3.p3;"
7739 CHECK_EQ(info.This(), global->Get(v8_str("o3")));
10278 Local<v8::Object> o3 = t3->GetFunction()->NewInstance(); local
10289 o0->Set(v8_str("__proto__"), o3);
10296 // which is o3. Therefore, z should not be defined on the prototype
10384 Local<v8::Object> o3 = t3->GetFunction()->NewInstance(); local
10395 CHECK(o2->SetPrototype(o3));
10455 Local<v8::Object> o3 = t3->GetFunction()->NewInstance(); local
[all...]

Completed in 643 milliseconds