Home
last modified time | relevance | path

Searched refs:notPrimitiveString (Results 1 – 2 of 2) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dbuiltins_object_stub_builder.cpp1102 Label notPrimitiveString(env); in GetEnumElementKeys() local
1108 BRANCH(IsJSPrimitiveRef(obj), &isJSPrimitiveRef, &notPrimitiveString); in GetEnumElementKeys()
1111 BRANCH(TaggedIsString(value), &isPrimitiveString, &notPrimitiveString); in GetEnumElementKeys()
1121 BRANCH(Int32UnsignedLessThan(*i, strLen), &iLessLength, &notPrimitiveString); in GetEnumElementKeys()
1135 Bind(&notPrimitiveString); in GetEnumElementKeys()
1694 Label notPrimitiveString(env); in GetAllElementKeys() local
1695 BRANCH(IsJSPrimitiveRef(obj), &isJSPrimitiveRef, &notPrimitiveString); in GetAllElementKeys()
1699 BRANCH(TaggedIsString(value), &isPrimitiveString, &notPrimitiveString); in GetAllElementKeys()
1709 BRANCH(Int32UnsignedLessThan(*i, elementIndex), &next, &notPrimitiveString); in GetAllElementKeys()
1723 Bind(&notPrimitiveString); in GetAllElementKeys()
[all …]
/arkcompiler/ets_runtime/ecmascript/compiler/
Dstub_builder.cpp8035 Label notPrimitiveString(env); in GetNumberOfElements() local
8039 BRANCH(IsJSPrimitiveRef(obj), &isJSPrimitiveRef, &notPrimitiveString); in GetNumberOfElements()
8042 BRANCH(TaggedIsString(value), &isPrimitiveString, &notPrimitiveString); in GetNumberOfElements()
8046 Jump(&notPrimitiveString); in GetNumberOfElements()
8048 Bind(&notPrimitiveString); in GetNumberOfElements()