Lines Matching defs:o1
2466 Local<v8::Object> o1 = v8::Object::New(isolate);
2468 CHECK_NE(o1->GetIdentityHash(), o2->GetIdentityHash());
2474 Local<v8::Object> o1 = v8::Object::New(isolate);
2476 CHECK_NE(o1->GetIdentityHash(), o2->GetIdentityHash());
4827 WeakCallCounterAndPersistent<Value> o1(&counter);
4840 o1.handle.Reset(isolate, obj1);
4859 weak_map->Get(Local<Value>::New(isolate, o1.handle)))
4869 o1.handle.SetWeak(&o1, &WeakPointerCallback,
4879 CHECK(o1.handle.IsEmpty());
7820 ->Equals(context, global->Get(context, v8_str("o1")).ToLocalChecked())
7825 global->Get(context, v8_str("o1")).ToLocalChecked())
7850 ->Set(context.local(), v8_str("o1"),
7854 "o1.__proto__ = { };"
7855 "var o2 = { __proto__: o1 };"
7861 "for (var i = 0; i < 10; i++) o1.p1;");
7873 ->Equals(context, global->Get(context, v8_str("o1")).ToLocalChecked())
7878 global->Get(context, v8_str("o1")).ToLocalChecked())
10440 Local<v8::Object> o1 = t1->GetFunction(context.local())
10458 CHECK(o0->Set(context.local(), v8_str("__proto__"), o1).FromJust());
10631 Local<v8::Object> o1 = t1->GetFunction(context.local())
10649 CHECK(o0->SetPrototype(context.local(), o1).FromJust());
10658 CHECK(o1->SetPrototype(context.local(), o2).FromJust());
10700 CHECK(proto0.As<v8::Object>()->Equals(context.local(), o1).FromJust());
10702 Local<Value> proto1 = o1->GetPrototype();
10742 Local<v8::Object> o1 = t1->GetFunction(context.local())
10762 CHECK(o2->SetPrototype(context.local(), o1).FromJust());
10801 Local<v8::Object> o1 = t1->GetFunction(context.local())
10817 CHECK(o2->SetPrototype(context.local(), o1).FromJust());
10821 CHECK(o1->Set(context.local(), sym, v8_num(3)).FromJust());
10822 o1->SetPrivate(context.local(),
10905 Local<v8::Object> o1 = t->GetFunction(context.local())
10910 CHECK(o0->SetPrototype(context.local(), o1).FromJust());
10914 CHECK(o1->SetPrototype(context.local(), o0).IsNothing());
12004 ->Set(context.local(), v8_str("o1"),
12010 " for (var i = 0; i < 30; i++) o1.p1;"
12011 " return o1.p1"
12040 ->Set(context.local(), v8_str("o1"),
12046 " try { o1.p1; } catch (e) { result += e; }"