Searched refs:is_not_constructor (Results 1 – 2 of 2) sorted by relevance
/external/v8/src/builtins/ |
D | builtins-array-gen.cc | 1892 Label is_constructor(this), is_not_constructor(this), done(this); in ConstructArrayLike() local 1893 GotoIf(TaggedIsSmi(receiver), &is_not_constructor); in ConstructArrayLike() 1894 Branch(IsConstructor(CAST(receiver)), &is_constructor, &is_not_constructor); in ConstructArrayLike() 1903 BIND(&is_not_constructor); in ConstructArrayLike() 1924 Label is_constructor(this), is_not_constructor(this), done(this); in ConstructArrayLike() local 1926 GotoIf(TaggedIsSmi(receiver), &is_not_constructor); in ConstructArrayLike() 1927 Branch(IsConstructor(CAST(receiver)), &is_constructor, &is_not_constructor); in ConstructArrayLike() 1936 BIND(&is_not_constructor); in ConstructArrayLike()
|
/external/v8/src/ |
D | code-stub-assembler.cc | 11620 Label is_not_constructor(this, Label::kDeferred), out(this); in GetSuperConstructor() local 11626 GotoIfNot(IsConstructorMap(prototype_map), &is_not_constructor); in GetSuperConstructor() 11631 BIND(&is_not_constructor); in GetSuperConstructor()
|