Searched defs:o4 (Results 1 - 8 of 8) sorted by relevance
/external/chromium_org/v8/test/webkit/ |
H A D | delete-getters-setters.js | 94 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 D | array-tostring.js | 91 var o4 = {length: 3, 0: 1, 1: 2, 2: 3, 94 assertEquals("[object Object]", o4.toString());
|
/external/v8/test/mjsunit/ |
H A D | array-tostring.js | 91 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 D | simple-inlining.js | 110 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 D | simple-inlining.js | 110 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 D | skia_utils_win.cc | 25 COMPILE_ASSERT(SK_OFFSETOF(RECT, bottom) == SK_OFFSETOF(SkIRect, fBottom), o4); member in namespace:__anon10690
|
/external/v8/test/cctest/ |
H A D | test-api.cc | 5425 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 D | test-api.cc | 7396 CHECK_EQ(info.This(), global->Get(v8_str("o4"))); 7409 "var o4 = { __proto__: o3 };" 7410 "for (var i = 0; i < 10; i++) o4.p4;" 7431 CHECK_EQ(info.This(), global->Get(v8_str("o4"))); 9992 Local<v8::Object> o4 = t4->GetFunction()->NewInstance(); local 9995 CHECK(o4->SetPrototype(o3)); 10001 context->Global()->Set(v8_str("obj"), o4);
|
Completed in 407 milliseconds