Lines Matching defs:o0
10705 Local<v8::Object> o0 = t0->GetFunction(context.local())
10723 CHECK_EQ(0, o0->Get(context.local(), v8_str("x"))
10727 CHECK(o0->Set(context.local(), v8_str("__proto__"), o1).FromJust());
10728 CHECK_EQ(0, o0->Get(context.local(), v8_str("x"))
10732 CHECK_EQ(1, o0->Get(context.local(), v8_str("y"))
10736 CHECK(o0->Set(context.local(), v8_str("__proto__"), o2).FromJust());
10737 CHECK_EQ(0, o0->Get(context.local(), v8_str("x"))
10741 CHECK_EQ(1, o0->Get(context.local(), v8_str("y"))
10745 CHECK_EQ(2, o0->Get(context.local(), v8_str("z"))
10749 CHECK(o0->Set(context.local(), v8_str("__proto__"), o3).FromJust());
10750 CHECK_EQ(0, o0->Get(context.local(), v8_str("x"))
10754 CHECK_EQ(1, o0->Get(context.local(), v8_str("y"))
10758 CHECK_EQ(2, o0->Get(context.local(), v8_str("z"))
10762 CHECK_EQ(3, o0->Get(context.local(), v8_str("u"))
10767 // Getting the prototype of o0 should get the first visible one
10771 o0->Get(context.local(), v8_str("__proto__")).ToLocalChecked();
10896 Local<v8::Object> o0 = t0->GetFunction(context.local())
10914 CHECK_EQ(0, o0->Get(context.local(), v8_str("x"))
10918 CHECK(o0->SetPrototype(context.local(), o1).FromJust());
10919 CHECK_EQ(0, o0->Get(context.local(), v8_str("x"))
10923 CHECK_EQ(1, o0->Get(context.local(), v8_str("y"))
10928 CHECK_EQ(0, o0->Get(context.local(), v8_str("x"))
10932 CHECK_EQ(1, o0->Get(context.local(), v8_str("y"))
10936 CHECK_EQ(2, o0->Get(context.local(), v8_str("z"))
10941 CHECK_EQ(0, o0->Get(context.local(), v8_str("x"))
10945 CHECK_EQ(1, o0->Get(context.local(), v8_str("y"))
10949 CHECK_EQ(2, o0->Get(context.local(), v8_str("z"))
10953 CHECK_EQ(3, o0->Get(context.local(), v8_str("u"))
10958 // Getting the prototype of o0 should get the first visible one
10962 o0->Get(context.local(), v8_str("__proto__")).ToLocalChecked();
10967 Local<Value> proto0 = o0->GetPrototype();
11172 Local<v8::Object> o0 = t->GetFunction(context.local())
11181 CHECK(o0->SetPrototype(context.local(), o1).FromJust());
11185 CHECK(o1->SetPrototype(context.local(), o0).IsNothing());