Home
last modified time | relevance | path

Searched refs:IsConstructor (Results 1 – 25 of 42) sorted by relevance

12

/external/v8/src/debug/
Ddebug-frames.h30 bool IsConstructor() { return is_constructor_; } in IsConstructor() function
/external/v8/src/
Dframes.cc682 bool BuiltinExitFrame::IsConstructor() const { in IsConstructor() function in v8::internal::BuiltinExitFrame
740 if (IsConstructor()) accumulator->Add("new "); in Print()
810 bool StandardFrame::IsConstructor() const { return false; } in IsConstructor() function in v8::internal::StandardFrame
1001 bool JavaScriptFrame::IsConstructor() const { in IsConstructor() function in v8::internal::JavaScriptFrame
1067 offset, IsConstructor()); in Summarize()
1141 if (frame->IsConstructor()) PrintF(file, "new "); in PrintTop()
1199 if (frame->IsConstructor()) ic_info.is_constructor = true; in CollectTopFrameForICStats()
1473 bool is_constructor = IsConstructor(); in FRAME_SUMMARY_DISPATCH()
1729 IsConstructor()); in Summarize()
1970 if (IsConstructor()) accumulator->Add("new "); in Print()
Dmessages.h74 virtual bool IsConstructor() = 0;
111 bool IsConstructor() override { return is_constructor_; } in IsConstructor() function
153 bool IsConstructor() override { return false; } in IsConstructor() function
Dframes.h457 bool IsConstructor() const;
652 virtual bool IsConstructor() const;
728 bool IsConstructor() const override;
Dobjects-debug.cc80 CHECK(!IsConstructor() || IsCallable()); in ObjectVerify()
110 CHECK(!IsConstructor()); in SmiVerify()
939 CHECK_EQ(IsConstructor(), bound_target_function()->IsConstructor()); in JSBoundFunctionVerify()
1437 CHECK_EQ(target()->IsConstructor(), map()->is_constructor()); in JSProxyVerify()
Dexecution.cc81 if ((!is_construct || function->IsConstructor()) && in Invoke()
Dapi-natives.cc643 DCHECK(!result->IsConstructor()); in CreateApiFunction()
Dmessages.cc602 const bool is_constructor = IsConstructor(); in ToString()
/external/v8/src/builtins/
Dbuiltins-call-gen.cc90 Branch(IsConstructor(CAST(target)), &if_target_constructor, in CallOrConstructWithArrayLike()
103 Branch(IsConstructor(CAST(new_target)), &if_new_target_constructor, in CallOrConstructWithArrayLike()
Dbuiltins-callsite.cc145 return isolate->heap()->ToBoolean(it.Frame()->IsConstructor()); in BUILTIN()
Dbuiltins-proxy-gen.cc40 GotoIf(IsConstructor(target), &constructor_target); in AllocateProxy()
393 CSA_ASSERT(this, IsConstructor(target)); in TF_BUILTIN()
Dbuiltins-async-gen.cc161 CSA_ASSERT(this, IsConstructor(promise_fun)); in AwaitOptimized()
Dbuiltins-async-iterator-gen.cc223 CSA_ASSERT(this, IsConstructor(promise_fun)); in Generate_AsyncFromSyncIteratorMethodOptimized()
Dbuiltins-typed-array-gen.cc668 CSA_ASSERT(this, IsConstructor(target)); in TF_BUILTIN()
1549 GotoIfNot(IsConstructor(CAST(receiver)), &if_not_constructor); in TF_BUILTIN()
1643 GotoIfNot(IsConstructor(CAST(receiver)), &if_not_constructor); in TF_BUILTIN()
Dbuiltins-promise-gen.cc1503 CSA_ASSERT(this, IsConstructor(constructor)); in TF_BUILTIN()
1560 CSA_ASSERT(this, IsConstructor(constructor)); in TF_BUILTIN()
1607 CSA_ASSERT(this, IsConstructor(constructor)); in TF_BUILTIN()
/external/v8/src/runtime/
Druntime-function.cc169 return isolate->heap()->ToBoolean(object->IsConstructor()); in RUNTIME_FUNCTION()
Druntime.h184 F(IsConstructor, 1, 1) \
Druntime-array.cc571 DCHECK(new_target->IsConstructor()); in RUNTIME_FUNCTION()
Druntime-classes.cc559 } else if (super_class->IsConstructor()) { in DefineClass()
/external/v8/src/parsing/
Dpreparser.h62 bool IsConstructor() const { return type_ == kConstructorIdentifier; } in IsConstructor() function
1305 V8_INLINE bool IsConstructor(const PreParserIdentifier& identifier) const {
1306 return identifier.IsConstructor();
Dparser.h610 V8_INLINE bool IsConstructor(const AstRawString* identifier) const {
/external/v8/src/compiler/
Djs-heap-broker.h179 bool IsConstructor() const;
Djs-create-lowering.cc132 if (!constructor.IsConstructor()) return NoChange(); in ReduceJSCreate()
135 if (!original_constructor.IsConstructor()) return NoChange(); in ReduceJSCreate()
714 DCHECK(constructor.IsConstructor()); in ReduceJSCreateArray()
715 DCHECK(original_constructor.IsConstructor()); in ReduceJSCreateArray()
Djs-heap-broker.cc1014 HANDLE_ACCESSOR_C(JSFunction, bool, IsConstructor) in BIMODAL_ACCESSOR()
/external/clang/lib/Parse/
DParseDecl.cpp4711 bool IsConstructor = false; in isConstructorDeclarator() local
4713 IsConstructor = true; in isConstructorDeclarator()
4746 IsConstructor = true; in isConstructorDeclarator()
4761 IsConstructor = IsUnqualified; in isConstructorDeclarator()
4766 IsConstructor = true; in isConstructorDeclarator()
4772 return IsConstructor; in isConstructorDeclarator()

12