Searched defs:o4 (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/v8/test/webkit/
H A Ddelete-getters-setters.js94 var o4 = { a: 1 };
95 o4.__defineGetter__("a", function() {});
96 o4.__defineGetter__("b", function() {});
97 delete o4.b;
98 shouldThrow("o4.a.property");
/external/chromium_org/v8/test/mjsunit/
H A Darray-tostring.js91 var o4 = {length: 3, 0: 1, 1: 2, 2: 3,
94 assertEquals("[object Object]", o4.toString());
/external/v8/test/mjsunit/
H A Darray-tostring.js91 var o4 = {length: 3, 0: 1, 1: 2, 2: 3,
94 assertEquals("[object Object]", o4.toString());
/external/chromium_org/v8/test/mjsunit/compiler/
H A Dsimple-inlining.js110 var o4 = {x:[1,2,3]};
111 o4.h = function() { return this.x.length; };
112 for (var i = 0; i < 5; i++) TestInlineThisXLength(o4);
114 TestInlineThisXLength(o4);
115 TestInlineThisXLength({h: o4.h, x:[1,2,3]});
/external/v8/test/mjsunit/compiler/
H A Dsimple-inlining.js110 var o4 = {x:[1,2,3]};
111 o4.h = function() { return this.x.length; };
112 for (var i = 0; i < 5; i++) TestInlineThisXLength(o4);
114 TestInlineThisXLength(o4);
115 TestInlineThisXLength({h: o4.h, x:[1,2,3]});
/external/chromium_org/skia/ext/
H A Dskia_utils_win.cc25 COMPILE_ASSERT(SK_OFFSETOF(RECT, bottom) == SK_OFFSETOF(SkIRect, fBottom), o4); member in namespace:__anon9964
/external/v8/test/cctest/
H A Dtest-api.cc5425 CHECK_EQ(info.This(), global->Get(v8_str("o4")));
5439 "var o4 = { __proto__: o3 };"
5440 "for (var i = 0; i < 10; i++) o4.p4;"
5460 CHECK_EQ(info.This(), global->Get(v8_str("o4")));
7806 Local<v8::Object> o4 = t4->GetFunction()->NewInstance(); local
7809 CHECK(o4->SetPrototype(o3));
7815 context->Global()->Set(v8_str("obj"), o4);
/external/chromium_org/v8/test/cctest/
H A Dtest-api.cc6977 CHECK_EQ(info.This(), global->Get(v8_str("o4")));
6990 "var o4 = { __proto__: o3 };"
6991 "for (var i = 0; i < 10; i++) o4.p4;"
7011 CHECK_EQ(info.This(), global->Get(v8_str("o4")));
9451 Local<v8::Object> o4 = t4->GetFunction()->NewInstance(); local
9454 CHECK(o4->SetPrototype(o3));
9460 context->Global()->Set(v8_str("obj"), o4);

Completed in 2469 milliseconds