Home
last modified time | relevance | path

Searched refs:has_prototype (Results 1 – 7 of 7) sorted by relevance

/third_party/node/deps/v8/src/objects/
Djs-function-inl.h178 DEF_GETTER(JSFunction, has_prototype, bool) { in DEF_GETTER() argument
205 DCHECK(has_prototype(cage_base)); in DEF_GETTER()
Djs-function.h287 DECL_GETTER(has_prototype, bool)
/third_party/node/deps/v8/src/wasm/
Dwasm-js.cc2644 i::Isolate* i_isolate, FunctionCallback func, bool has_prototype, in NewFunctionTemplate() argument
2648 has_prototype ? ConstructorBehavior::kAllow : ConstructorBehavior::kThrow; in NewFunctionTemplate()
2651 if (has_prototype) templ->ReadOnlyPrototype(); in NewFunctionTemplate()
2666 bool has_prototype, in CreateFunc() argument
2669 NewFunctionTemplate(isolate, func, has_prototype, side_effect_type); in CreateFunc()
2678 FunctionCallback func, int length, bool has_prototype = false, in InstallFunc() argument
2683 CreateFunc(isolate, name, func, has_prototype, side_effect_type); in InstallFunc()
3017 bool has_prototype = true; in InstallConditionalFeatures() local
3019 CreateFunc(isolate, tag_name, WebAssemblyTag, has_prototype, in InstallConditionalFeatures()
/third_party/node/deps/v8/src/heap/
Dfactory.cc3680 bool has_prototype = IsFunctionModeWithPrototype(function_mode); in CreateSloppyFunctionMap() local
3681 int header_size = has_prototype ? JSFunction::kSizeWithPrototype in CreateSloppyFunctionMap()
3683 int descriptors_count = has_prototype ? 5 : 4; in CreateSloppyFunctionMap()
3693 raw_map.set_has_prototype_slot(has_prototype); in CreateSloppyFunctionMap()
3694 raw_map.set_is_constructor(has_prototype); in CreateSloppyFunctionMap()
3766 bool has_prototype = IsFunctionModeWithPrototype(function_mode); in CreateStrictFunctionMap() local
3767 int header_size = has_prototype ? JSFunction::kSizeWithPrototype in CreateStrictFunctionMap()
3785 raw_map.set_has_prototype_slot(has_prototype); in CreateStrictFunctionMap()
3786 raw_map.set_is_constructor(has_prototype); in CreateStrictFunctionMap()
/third_party/node/deps/v8/src/builtins/
Daccessors.cc317 if (!function->has_prototype()) { in GetFunctionPrototype()
/third_party/node/deps/v8/src/diagnostics/
Dobjects-printer.cc1531 if (has_prototype()) { in JSFunctionPrint()
/third_party/chromium/patch/
D0001-cve.patch151864 CreateFunc(isolate, tag_name, WebAssemblyTag, has_prototype,