Searched refs:elementsLen (Results 1 - 7 of 7) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/base/ |
H A D | fast_json_stringifier.cpp | 404 uint32_t elementsLen = ElementAccessor::GetElementsLength(obj); in TryCacheSerializeElements() local 405 for (uint32_t i = 0; i < elementsLen; ++i) { in TryCacheSerializeElements() 451 uint32_t elementsLen = ElementAccessor::GetElementsLength(obj); in SerializeElementsWithCache() local 452 for (uint32_t i = 0; i < elementsLen; ++i) { in SerializeElementsWithCache() 756 uint32_t elementsLen = ElementAccessor::GetElementsLength(obj); in DefaultSerializeElements() local 757 for (uint32_t i = 0; i < elementsLen; ++i) { in DefaultSerializeElements()
|
H A D | json_stringifier.cpp | 619 uint32_t elementsLen = ElementAccessor::GetElementsLength(obj); in SerializeElements() local 620 for (uint32_t i = 0; i < elementsLen; ++i) { in SerializeElements()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | js_object.cpp | 627 uint32_t elementsLen = ElementAccessor::GetElementsLength(obj); in GetAllElementKeys() local 628 for (uint32_t i = 0, j = elementIndex; i < elementsLen; ++i) { in GetAllElementKeys() 661 uint32_t elementsLen = ElementAccessor::GetElementsLength(obj); in GetAllElementKeysByFilter() local 662 for (uint32_t i = 0; i < elementsLen; ++i) { in GetAllElementKeysByFilter() 684 uint32_t elementsLen = ElementAccessor::GetElementsLength(obj); in GetALLElementKeysIntoVector() local 685 for (uint32_t i = 0; i < elementsLen; ++i) { in GetALLElementKeysIntoVector() 725 uint32_t elementsLen = ElementAccessor::GetElementsLength(obj); in CollectEnumElementsAlongProtoChain() local 727 for (uint32_t i = 0; i < elementsLen; ++i) { in CollectEnumElementsAlongProtoChain() 760 uint32_t elementsLen = ElementAccessor::GetElementsLength(obj); in GetEnumElementKeys() local 761 for (uint32_t i = 0, j = elementIndex; i < elementsLen; in GetEnumElementKeys() 829 uint32_t elementsLen = ElementAccessor::GetElementsLength(this); GetNumberOfElements() local [all...] |
/arkcompiler/ets_runtime/ecmascript/jspandafile/ |
H A D | program_object.h | 588 size_t elementsLen = elements->GetLength(); in GetLiteralFromCache() local 589 for (size_t i = 0; i < elementsLen; i += 2) { // 2: Each literal buffer has a pair of key-value. in GetLiteralFromCache()
|
H A D | panda_file_translator.cpp | 234 size_t elementsLen = elements->GetLength(); in ParseConstPool() local 235 for (size_t i = 0; i < elementsLen; i += 2) { // 2: Each literal buffer contains a pair of key-value. in ParseConstPool() 306 size_t elementsLen = elements->GetLength(); in ParseFuncAndLiteralConstPool() local 307 for (size_t i = 0; i < elementsLen; i += 2) { // 2: Each literal buffer contains a pair of key-value. in ParseFuncAndLiteralConstPool()
|
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/ |
H A D | builtins_object_stub_builder.cpp | 1154 GateRef elementsLen = GetLengthOfTaggedArray(elements);
in GetEnumElementKeys() local 1158 BRANCH(Int32UnsignedLessThan(*j, elementsLen), &iLessLength, &afterLoop);
in GetEnumElementKeys() 1750 GateRef elementsLen = GetLengthOfTaggedArray(elements);
in GetAllElementKeys() local 1755 BRANCH(Int32UnsignedLessThan(*j, elementsLen), &next, &loopExit);
in GetAllElementKeys()
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | stub_builder.cpp | 8117 GateRef elementsLen = GetLengthOfTaggedArray(elements); in GetNumberOfElements() local 8121 BRANCH(Int32UnsignedLessThan(*i, elementsLen), &iLessLength, &exit); in GetNumberOfElements()
|
Completed in 30 milliseconds