Searched defs:o4 (Results 1 - 5 of 5) 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/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/chromium_org/skia/ext/
H A Dskia_utils_win.cc19 SK_COMPILE_ASSERT(offsetof(RECT, bottom) == offsetof(SkIRect, fBottom), o4); member in namespace:__anon10683
/external/chromium_org/v8/test/cctest/
H A Dtest-api.cc7706 CHECK_EQ(info.This(), global->Get(v8_str("o4")));
7719 "var o4 = { __proto__: o3 };"
7720 "for (var i = 0; i < 10; i++) o4.p4;"
7741 CHECK_EQ(info.This(), global->Get(v8_str("o4")));
10456 Local<v8::Object> o4 = t4->GetFunction()->NewInstance(); local
10459 CHECK(o4->SetPrototype(o3));
10465 context->Global()->Set(v8_str("obj"), o4);

Completed in 1631 milliseconds