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

/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/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/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);

Completed in 111 milliseconds