Home
last modified time | relevance | path

Searched refs:function_template (Results 1 – 3 of 3) sorted by relevance

/third_party/node/src/
Dnode_contextify.cc167 Local<FunctionTemplate> function_template = in CreateV8Context() local
170 function_template->SetClassName(sandbox_obj->GetConstructorName()); in CreateV8Context()
173 function_template->InstanceTemplate(); in CreateV8Context()
250 Local<FunctionTemplate> function_template = in Init() local
252 function_template->InstanceTemplate()->SetInternalFieldCount( in Init()
255 function_template->GetFunction(env->context()).ToLocalChecked()); in Init()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/
DDwarf.def201 HANDLE_DW_TAG(0x4102, function_template, 0, GNU, DW_KIND_NONE)
/third_party/chromium/patch/
D0003-ohos-1115.patch25202 +#include "gin/function_template.h"
25314 + v8::Local<v8::FunctionTemplate> function_template = template_cache_.Get(name);
25315 + if (!function_template.IsEmpty())
25316 + return function_template;
25317 + function_template = gin::CreateFunctionTemplate(
25322 + template_cache_.Set(name, function_template);
25323 + return function_template;