HomeSort by relevance Sort by last modified time
    Searched refs:GetCollections (Results 1 - 7 of 7) sorted by null

  /art/dexlayout/
dex_writer.cc 247 for (std::unique_ptr<dex_ir::StringId>& string_id : header_->GetCollections().StringIds()) {
252 for (auto& string_data_pair : header_->GetCollections().StringDatas()) {
262 for (std::unique_ptr<dex_ir::TypeId>& type_id : header_->GetCollections().TypeIds()) {
271 for (auto& type_list_pair : header_->GetCollections().TypeLists()) {
285 for (std::unique_ptr<dex_ir::ProtoId>& proto_id : header_->GetCollections().ProtoIds()) {
295 for (std::unique_ptr<dex_ir::FieldId>& field_id : header_->GetCollections().FieldIds()) {
306 for (std::unique_ptr<dex_ir::MethodId>& method_id : header_->GetCollections().MethodIds()) {
316 for (auto& encoded_array_pair : header_->GetCollections().EncodedArrayItems()) {
324 for (auto& annotation_pair : header_->GetCollections().AnnotationItems()) {
336 for (auto& annotation_set_pair : header_->GetCollections().AnnotationSetItems())
    [all...]
dexlayout.cc 417 if (index < header->GetCollections().TypeIdsSize()) {
418 const char* tp = header->GetCollections().GetTypeId(index)->GetStringId()->Data();
425 if (index < header->GetCollections().StringIdsSize()) {
426 const char* st = header->GetCollections().GetStringId(index)->Data();
433 if (index < header->GetCollections().MethodIdsSize()) {
434 dex_ir::MethodId* method_id = header->GetCollections().GetMethodId(index);
445 if (index < header->GetCollections().FieldIdsSize()) {
446 dex_ir::FieldId* field_id = header->GetCollections().GetFieldId(index);
466 if (index < header->GetCollections().MethodIdsSize()) {
467 dex_ir::MethodId* method_id = header->GetCollections().GetMethodId(index)
    [all...]
dex_visualize.cc 257 const uint32_t class_defs_size = header->GetCollections().ClassDefsSize();
259 dex_ir::ClassDef* class_def = header->GetCollections().GetClassDef(class_index);
dex_ir_builder.cc 41 Collections& collections = header->GetCollections();
dex_verify.cc 34 dex_ir::Collections& orig = orig_header->GetCollections();
35 dex_ir::Collections& output = output_header->GetCollections();
    [all...]
dex_ir.cc     [all...]
dex_ir.h 439 Collections& GetCollections() { return collections_; }
    [all...]

Completed in 171 milliseconds