• Home
  • Raw
  • Download

Lines Matching refs:elementIndex

445     uint32_t elementIndex = 0;  in GetAllElementKeys()  local
447elementIndex = JSPrimitiveRef::Cast(*obj)->GetStringLength() + static_cast<uint32_t>(offset); in GetAllElementKeys()
448 for (uint32_t i = static_cast<uint32_t>(offset); i < elementIndex; ++i) { in GetAllElementKeys()
457 for (uint32_t i = 0, j = elementIndex; i < elementsLen; ++i) { in GetAllElementKeys()
464 …NumberDictionary::GetAllKeys(thread, JSHandle<NumberDictionary>(elements), elementIndex, keyArray); in GetAllElementKeys()
475 uint32_t elementIndex = 0; in GetAllElementKeysByFilter() local
479 elementIndex = JSPrimitiveRef::Cast(*obj)->GetStringLength(); in GetAllElementKeysByFilter()
480 for (uint32_t i = 0; i < elementIndex; ++i) { in GetAllElementKeysByFilter()
530 uint32_t elementIndex = 0; in GetEnumElementKeys() local
534 elementIndex = JSPrimitiveRef::Cast(*obj)->GetStringLength(); in GetEnumElementKeys()
535 *keys += elementIndex; in GetEnumElementKeys()
536 elementIndex += static_cast<uint32_t>(offset); in GetEnumElementKeys()
537 for (uint32_t i = static_cast<uint32_t>(offset); i < elementIndex; ++i) { in GetEnumElementKeys()
546 uint32_t preElementIndex = elementIndex; in GetEnumElementKeys()
550 elementArray->Set(thread, elementIndex++, keyHandle); in GetEnumElementKeys()
553 *keys += (elementIndex - preElementIndex); in GetEnumElementKeys()
555 …NumberDictionary::GetAllEnumKeys(thread, JSHandle<NumberDictionary>(arr), elementIndex, elementArr… in GetEnumElementKeys()
563 uint32_t elementIndex = 0; in GetEnumElementKeys() local
565elementIndex = JSPrimitiveRef::Cast(*obj)->GetStringLength() + static_cast<uint32_t>(offset); in GetEnumElementKeys()
566 for (uint32_t i = static_cast<uint32_t>(offset); i < elementIndex; ++i) { in GetEnumElementKeys()
575 for (uint32_t i = 0, j = elementIndex; i < elementsLen; ++i) { in GetEnumElementKeys()
583 …NumberDictionary::GetAllEnumKeys(thread, JSHandle<NumberDictionary>(elements), elementIndex, keyAr… in GetEnumElementKeys()
1325 uint32_t elementIndex = 0; in GetAllPropertyKeys() local
1327 (elementIndex < retArrayEffectivelength)) { in GetAllPropertyKeys()
1328 if (retArray->Get(elementIndex).IsString()) { in GetAllPropertyKeys()
1329 … TaggedArray::RemoveElementByIndex(thread, retArray, elementIndex, retArrayEffectivelength); in GetAllPropertyKeys()
1332 elementIndex++; in GetAllPropertyKeys()