Lines Matching refs:t1
7679 Local<v8::FunctionTemplate> t1 = v8::FunctionTemplate::New();
7680 t1->SetHiddenPrototype(true);
7681 t1->InstanceTemplate()->Set(v8_str("y"), v8_num(1));
7689 Local<v8::Object> o1 = t1->GetFunction()->NewInstance();
7723 Local<v8::FunctionTemplate> t1 = v8::FunctionTemplate::New();
7724 t1->SetHiddenPrototype(true);
7725 t1->InstanceTemplate()->Set(v8_str("y"), v8_num(1));
7733 Local<v8::Object> o1 = t1->GetFunction()->NewInstance();
7782 Local<v8::FunctionTemplate> t1 = v8::FunctionTemplate::New();
7783 t1->SetHiddenPrototype(true);
7784 t1->InstanceTemplate()->Set(v8_str("foo"), v8_num(1));
7803 Local<v8::Object> o1 = t1->GetFunction()->NewInstance();
7832 Local<v8::FunctionTemplate> t1 = v8::FunctionTemplate::New();
7833 t1->PrototypeTemplate()->Set(v8_str("x"), v8::Integer::New(42));
7834 t1->ReadOnlyPrototype();
7835 context->Global()->Set(v8_str("func1"), t1->GetFunction());