Home
last modified time | relevance | path

Searched refs:class_idx (Results 1 – 8 of 8) sorted by relevance

/arkcompiler/runtime_core/libpandafile/
Dannotation_data_accessor.cpp25 auto class_idx = helpers::Read<IDX_SIZE>(&sp); in AnnotationDataAccessor() local
26 class_off_ = panda_file_.ResolveClassIndex(annotation_id_, class_idx).GetOffset(); in AnnotationDataAccessor()
Dfield_data_accessor.cpp27 auto class_idx = helpers::Read<IDX_SIZE>(&sp); in FieldDataAccessor() local
30 class_off_ = panda_file.ResolveClassIndex(field_id, class_idx).GetOffset(); in FieldDataAccessor()
Dproto_data_accessor-inl.h128 auto class_idx = helpers::Read<IDX_SIZE>(&sp); in GetReferenceType() local
129 return panda_file_.ResolveClassIndex(proto_id_, class_idx); in GetReferenceType()
Dmethod_data_accessor-inl.h53 auto class_idx = helpers::Read<IDX_SIZE>(&sp); in GetClassId() local
54 return File::EntityId(panda_file.ResolveClassIndex(method_id, class_idx).GetOffset()); in GetClassId()
Dfile.cpp640 auto class_idx = GetClasses(); in GetClassId() local
642 … = std::lower_bound(ClassIdxIterator::Begin(*this, class_idx), ClassIdxIterator::End(*this, class_… in GetClassId()
Dfile_reader.cpp1036 const auto class_idx = file_->GetClasses(); in ReadClasses() local
1038 for (unsigned int id : class_idx) { in ReadClasses()
/arkcompiler/runtime_core/docs/
Dfile_format.md265 | `class_idx` | `uint16_t` | Index of the declaring class in a [`ClassRegionIndex`](#cl…
269 Note: Proper region index to resolve `class_idx` and `type_idx` can be found by foreign field's off…
279 | `class_idx` | `uint16_t` | Index of the declaring class in a [`ClassRegionIndex`](#cl…
285 Note: Proper region index to resolve `class_idx` and `type_idx` can be found by field's offset.
333 | `class_idx` | `uint16_t` | Index of the declaring class in a [`ClassRegionIndex`](#cl…
338 Note: Proper region index to resolve `class_idx` and `proto_idx` can be found by foreign method's o…
348 | `class_idx` | `uint16_t` | Index of the declaring class in a [`ClassRegionIndex`](#cl…
354 Note: Proper region index to resolve `class_idx` and `proto_idx` can be found by method's offset.
531 | `class_idx` | `uint16_t` | Index of the declaring class in a [`ClassRegionIndex…
536 Note: Proper region index to resolve `class_idx` can be found by annotation's offset.
/arkcompiler/runtime_core/disassembler/
Ddisassembler.cpp366 const auto class_idx = file_->GetClasses(); in GetRecords() local
368 for (size_t i = 0; i < class_idx.size(); i++) { in GetRecords()
369 uint32_t class_id = class_idx[i]; in GetRecords()
490 auto class_idx = catch_block.GetTypeIdx(); in GetExceptions() local
491 if (class_idx == panda_file::INVALID_INDEX) { in GetExceptions()
494 const auto class_id = file_->ResolveClassIndex(method_id, class_idx); in GetExceptions()