/third_party/node/deps/v8/include/ |
H A D | v8-debug.h | 93 bool IsConstructor() const;
|
H A D | v8-object.h | 643 bool IsConstructor() const;
|
/third_party/node/deps/v8/include/v8-include/ |
H A D | v8-debug.h | 93 bool IsConstructor() const;
|
H A D | v8-object.h | 662 bool IsConstructor() const;
|
/third_party/node/deps/v8/src/objects/ |
H A D | call-site-info-inl.h | 31 BOOL_GETTER(CallSiteInfo, flags, IsConstructor, IsConstructorBit::kShift)
|
H A D | call-site-info.h | 35 inline bool IsConstructor() const;
|
H A D | js-function-inl.h | 185 return (has_prototype_slot(cage_base) && IsConstructor(cage_base)) || in DEF_GETTER()
|
H A D | call-site-info.cc | 62 return !IsToplevel() && !IsConstructor(); in IsMethodCall() 734 } else if (frame->IsConstructor()) { in SerializeJSStackFrame()
|
H A D | debug-objects.cc | 441 call_site_info->IsConstructor()); in EnsureStackFrameInfos()
|
H A D | js-function.cc | 668 DCHECK(function->IsConstructor() || in SetPrototype() 728 DCHECK(function->IsConstructor() || in EnsureHasInitialMap()
|
/third_party/node/deps/v8/src/debug/ |
H A D | debug-frames.h | 35 bool IsConstructor() { return is_constructor_; } in IsConstructor() function in v8::internal::FrameInspector
|
/third_party/node/deps/v8/src/execution/ |
H A D | frames.cc | 882 IsConstructor(), *parameters); in Summarize() 921 bool BuiltinExitFrame::IsConstructor() const { in IsConstructor() function in v8::internal::BuiltinExitFrame 962 if (IsConstructor()) accumulator->Add("new "); in Print() 1293 bool JavaScriptFrame::IsConstructor() const { in IsConstructor() function in v8::internal::JavaScriptFrame 1339 bool CommonFrameWithJSLinkage::IsConstructor() const { in IsConstructor() function in v8::internal::CommonFrameWithJSLinkage 1352 IsConstructor(), *params); in Summarize() 1427 if (frame->IsConstructor()) PrintF(file, "new "); in PrintTop() 1782 bool is_constructor = IsConstructor(); in Summarize() 1978 IsConstructor(), *params); in Summarize() 2293 if (IsConstructor()) accumulato in Print() [all...] |
H A D | frames.h | 569 virtual bool IsConstructor() const; 608 bool IsConstructor() const override; 770 bool IsConstructor() const;
|
H A D | execution.cc | 312 if ((!params.is_construct || function->IsConstructor()) && in Invoke()
|
/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-callsite.cc | 148 return isolate->heap()->ToBoolean(frame->IsConstructor()); in BUILTIN()
|
H A D | builtins-proxy-gen.cc | 35 GotoIf(IsConstructor(target), &constructor_target); in AllocateProxy() 201 CSA_DCHECK(this, IsConstructor(CAST(target))); in TF_BUILTIN()
|
H A D | builtins-call-gen.cc | 174 Branch(IsConstructor(CAST(target)), &if_target_constructor, in CallOrConstructWithArrayLike() 187 Branch(IsConstructor(CAST(*new_target)), &if_new_target_constructor, in CallOrConstructWithArrayLike()
|
H A D | builtins-async-iterator-gen.cc | 164 CSA_DCHECK(this, IsConstructor(promise_fun)); in Generate_AsyncFromSyncIteratorMethod()
|
/third_party/node/deps/v8/src/diagnostics/ |
H A D | objects-debug.cc | 131 CHECK(!IsConstructor(cage_base) || IsCallable(cage_base)); in ObjectVerify() 166 CHECK(!IsConstructor()); in SmiVerify() 869 CHECK_EQ(IsConstructor(), bound_target_function().IsConstructor()); in JSBoundFunctionVerify() 1574 CHECK_EQ(target().IsConstructor(), map().is_constructor()); in JSProxyVerify() 1899 CHECK_IMPLIES(IsConstructor(), !IsWasm()); in CallSiteInfoVerify()
|
/third_party/node/deps/v8/src/web-snapshot/ |
H A D | web-snapshot.h | 69 bool IsConstructor(uint32_t flags);
|
H A D | web-snapshot.cc | 136 } else if (IsConstructor(flags)) { in FunctionFlagsToFunctionKind() 163 bool WebSnapshotSerializerDeserializer::IsConstructor(uint32_t flags) { in IsConstructor() function in v8::internal::WebSnapshotSerializerDeserializer
|
/third_party/node/deps/v8/src/runtime/ |
H A D | runtime-array.cc | 74 DCHECK(new_target->IsConstructor()); in RUNTIME_FUNCTION()
|
H A D | runtime-classes.cc | 602 } else if (super_class->IsConstructor()) { in DefineClass()
|
/third_party/node/deps/v8/src/parsing/ |
H A D | preparser.h | 67 bool IsConstructor() const { return type_ == kConstructorIdentifier; } in IsConstructor() function in v8::internal::PreParserIdentifier 1314 V8_INLINE bool IsConstructor(const PreParserIdentifier& identifier) const { in IsConstructor() function in v8::internal::PreParser 1315 return identifier.IsConstructor(); in IsConstructor()
|
/third_party/node/deps/v8/src/api/ |
H A D | api-natives.cc | 693 DCHECK(!result->IsConstructor()); in CreateApiFunction()
|