Home | History | Annotate | Download | only in cctest

Lines Matching refs:t1

9805   Local<v8::FunctionTemplate> t1 = v8::FunctionTemplate::New();
9806 t1->SetHiddenPrototype(true);
9807 t1->InstanceTemplate()->Set(v8_str("y"), v8_num(1));
9815 Local<v8::Object> o1 = t1->GetFunction()->NewInstance();
9909 Local<v8::FunctionTemplate> t1 = v8::FunctionTemplate::New();
9910 t1->SetHiddenPrototype(true);
9911 t1->InstanceTemplate()->Set(v8_str("y"), v8_num(1));
9919 Local<v8::Object> o1 = t1->GetFunction()->NewInstance();
9968 Local<v8::FunctionTemplate> t1 = v8::FunctionTemplate::New();
9969 t1->SetHiddenPrototype(true);
9970 t1->InstanceTemplate()->Set(v8_str("foo"), v8_num(1));
9989 Local<v8::Object> o1 = t1->GetFunction()->NewInstance();
10018 Local<v8::FunctionTemplate> t1 = v8::FunctionTemplate::New();
10019 t1->PrototypeTemplate()->Set(v8_str("x"), v8::Integer::New(42));
10020 t1->ReadOnlyPrototype();
10021 context->Global()->Set(v8_str("func1"), t1->GetFunction());
10070 Local<v8::FunctionTemplate> t1 = v8::FunctionTemplate::New();
10071 t1->RemovePrototype();
10072 Local<v8::Function> fun = t1->GetFunction();