Searched defs:o0 (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/v8/test/cctest/
H A Dtest-debug.cc4536 v8::Handle<v8::Object> o0 = t0->GetFunction()->NewInstance(); local
4537 env->Global()->Set(v8::String::NewFromUtf8(isolate, "o0"), o0); local
4547 "var o0_mirror = debug.MakeMirror(o0);"
4566 // Set o1 as prototype for o0. o1 has the hidden prototype flag so all
4567 // properties on o1 should be seen on o0.
4568 o0->Set(v8::String::NewFromUtf8(isolate, "__proto__"), o1);
4576 // Set o2 as prototype for o0 (it will end up after o1 as o1 has the hidden
4578 // on o2 should be seen on o0 as well as properties on o1.
4579 o0
[all...]
H A Dtest-api.cc10275 Local<v8::Object> o0 = t0->GetFunction()->NewInstance(); local
10281 CHECK_EQ(0, o0->Get(v8_str("x"))->Int32Value());
10282 o0->Set(v8_str("__proto__"), o1);
10283 CHECK_EQ(0, o0->Get(v8_str("x"))->Int32Value());
10284 CHECK_EQ(1, o0->Get(v8_str("y"))->Int32Value());
10285 o0->Set(v8_str("__proto__"), o2);
10286 CHECK_EQ(0, o0->Get(v8_str("x"))->Int32Value());
10287 CHECK_EQ(1, o0->Get(v8_str("y"))->Int32Value());
10288 CHECK_EQ(2, o0->Get(v8_str("z"))->Int32Value());
10289 o0
10381 Local<v8::Object> o0 = t0->GetFunction()->NewInstance(); local
10575 Local<v8::Object> o0 = t->GetFunction()->NewInstance(); local
[all...]

Completed in 164 milliseconds