Home | History | Annotate | Download | only in cctest

Lines Matching defs:derived

13 //       contributors may be used to endorse or promote products derived
905 Local<v8::FunctionTemplate> derived = v8::FunctionTemplate::New();
907 derived->Inherit(base);
910 Local<v8::Function> derived_function = derived->GetFunction();
923 CHECK(base_instance->FindInstanceInPrototypeChain(derived).IsEmpty());
926 // derived_instance is an instance of base and derived.
930 derived_instance->FindInstanceInPrototypeChain(derived));
934 // prototype derived_instance2 is an instance of base and derived.
935 // Note, derived_instance is an instance of base and derived too,
941 other_instance->FindInstanceInPrototypeChain(derived));