Lines Matching defs:tpl
2242 v8::Local<v8::FunctionTemplate> tpl;
2244 env, constructor, &tpl));
2248 tpl->SetClassName(name_string);
2282 tpl->PrototypeTemplate()->SetAccessorProperty(property_name,
2294 env, p->method, &t, v8::Signature::New(isolate, tpl)));
2297 tpl->PrototypeTemplate()->Set(property_name, t, attributes);
2300 tpl->PrototypeTemplate()->Set(property_name, value, attributes);
2306 scope.Escape(tpl->GetFunction(context).ToLocalChecked()));
4762 v8::Local<v8::FunctionTemplate> tpl;
4764 env, constructor, &tpl));
4768 tpl->SetClassName(name_string);
4800 tpl->PrototypeTemplate()->SetAccessorProperty(property_name,
4812 env, p->method, &t, v8::Signature::New(isolate, tpl)));
4815 tpl->PrototypeTemplate()->Set(property_name, t, attributes);
4818 tpl->PrototypeTemplate()->Set(property_name, value, attributes);
4844 tpl->InstanceTemplate()->SetHandler(namedPropertyHandler);
4861 tpl->InstanceTemplate()->SetHandler(indexPropertyHandler);
4866 tpl->InstanceTemplate()->SetCallAsFunctionHandler(v8impl::FunctionCallbackWrapper::Invoke, funcCbdata);
4871 scope.Escape(tpl->GetFunction(context).ToLocalChecked()));