Home | History | Annotate | Download | only in cctest

Lines Matching refs:instance

703   // base_instance is only an instance of base.
709 // derived_instance is an instance of base and derived.
716 // other_instance is an instance of other and its immediate
717 // prototype derived_instance2 is an instance of base and derived.
718 // Note, derived_instance is an instance of base and derived too,
961 // Instance accessor should not be visible on function object or its prototype
2550 // Create an instance of F and introduce a map transition for x.
2552 // Create an instance of F and invoke the getter. The result should be 23.
5036 Local<ObjectTemplate> instance = t->InstanceTemplate();
5038 instance->Set(v8_str("x"), v8_num(42));
5039 instance->Set(v8_str("f"),
5144 Local<ObjectTemplate> instance = t->InstanceTemplate();
5154 instance->SetAccessor(v8_str("y"), ShadowYGetter, ShadowYSetter);
5555 Local<v8::Object> instance = t->GetFunction()->NewInstance();
5556 context->Global()->Set(v8_str("obj"), instance);
6825 // so 'h' can be shadowed on the instance object.
6830 // Add 'i' as an accessor to the instance template with ReadOnly attributes
6839 Local<v8::Object> instance = child_templ->GetFunction()->NewInstance();
6842 context->Global()->Set(v8_str("o"), instance);
6900 Local<v8::Object> instance = templ->GetFunction()->NewInstance();
6901 Local<String> value = instance->ToString();
6905 value = instance->ObjectProtoToString();
7601 Local<v8::Object> instance = templ->NewInstance();
7602 context->Global()->Set(v8_str("obj"), instance);
7828 Local<Value> value = CompileRun("var instance = new other.C(); instance.x");