Searched refs:IsJsArray (Results 1 – 4 of 4) sorted by relevance
| /arkcompiler/ets_runtime/ecmascript/compiler/builtins/ |
| D | builtins_array_stub_builder.cpp | 60 BRANCH(IsJsArray(thisValue), &isJsArray, slowPath); in With() 193 BRANCH(IsJsArray(thisValue), &isJsArray, slowPath); in Unshift() 433 BRANCH(IsJsArray(thisValue), &isJsArray, slowPath); in Concat() 568 GateRef thisValueAndProtoIsJSArray = LogicAndBuilder(env).And(IsJsArray(thisValue)) in Filter() 569 .And(IsJsArray(StubBuilder::GetPrototype(glue, thisValue))).Done(); in Filter() 731 GateRef thisValueAndProtoIsJSArray = LogicAndBuilder(env).And(IsJsArray(thisValue)) in Map() 732 .And(IsJsArray(StubBuilder::GetPrototype(glue, thisValue))).Done(); in Map() 872 BRANCH(IsJsArray(thisValue), &isJsArray, slowPath); in ForEach() 1154 BRANCH(IsJsArray(thisValue), &isJsArray, slowPath); in Slice() 1400 BRANCH(IsJsArray(thisValue), &isJsArray, slowPath); in SortAfterArgs() [all …]
|
| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | stub_builder.h | 430 GateRef IsJsArray(GateRef obj);
|
| D | stub_builder.cpp | 1399 …Branch(LogicOrBuilder(env_).Or(IsJsArray(receiver)).Or(IsTypedArray(receiver)).Done(), &isArray, &… in SetHasConstructorCondition() 3775 BRANCH(IsJsArray(receiver), &isArray, ¬Array); in AddElementInternal() 3959 BRANCH(BitOr(IsProtoTypeHClass(hclass), IsJsArray(receiver)), &isProtoType, &exit); in NotifyStableArrayElementsGuardians()
|
| D | stub_builder-inl.h | 1486 inline GateRef StubBuilder::IsJsArray(GateRef obj) in IsJsArray() function
|