Home
last modified time | relevance | path

Searched refs:numIndex (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/jspandafile/
Dtype_literal_extractor.h68 void EnumerateElements(const uint32_t numIndex, const Callback &callback) in EnumerateElements() argument
70 ASSERT(numIndex < array_.size()); in EnumerateElements()
71 uint32_t length = std::get<uint32_t>(array_[numIndex]); in EnumerateElements()
72 ASSERT(numIndex + length < array_.size()); in EnumerateElements()
74 uint32_t value = GetIntValue(numIndex + i); in EnumerateElements()
80 void EnumerateTypesWithIntKey(const uint32_t numIndex, const Callback &callback) in EnumerateTypesWithIntKey() argument
82 ASSERT(numIndex < array_.size()); in EnumerateTypesWithIntKey()
84 uint32_t length = std::get<uint32_t>(array_[numIndex]); in EnumerateTypesWithIntKey()
85 ASSERT(numIndex + length * gap < array_.size()); in EnumerateTypesWithIntKey()
87 uint32_t keyIndex = numIndex + i * gap + KEY_OFFSET; in EnumerateTypesWithIntKey()
[all …]
/arkcompiler/ets_frontend/es2panda/typescript/types/
DindexInfo.cpp27 void IndexInfo::ToString(std::stringstream &ss, bool numIndex) const in ToString()
35 if (numIndex) { in ToString()
DindexInfo.h69 void ToString(std::stringstream &ss, bool numIndex = true) const;