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

  /art/dexlayout/
compact_dex_writer.cc 44 std::vector<uint32_t> debug_info_offsets(header_->MethodIds().Size(), 0u);
292 header.method_ids_size_ = header_->MethodIds().Size();
293 header.method_ids_off_ = header_->MethodIds().GetOffset();
336 std::vector<bool> saw_method_id(header_->MethodIds().Size(), false);
337 std::vector<dex_ir::CodeItem*> method_id_code_item(header_->MethodIds().Size(), nullptr);
338 std::vector<dex_ir::DebugInfoItem*> method_id_debug_info(header_->MethodIds().Size(), nullptr);
dex_ir.cc 82 [](const dex_ir::Header* h) { return h->MethodIds().Size(); },
83 [](const dex_ir::Header* h) { return h->MethodIds().GetOffset(); }
dex_ir_builder.cc 293 header->MethodIds().SetOffset(disk_header.method_ids_off_);
360 CHECK_EQ(item->size_, header_->MethodIds().Size());
361 CHECK_EQ(item->offset_, header_->MethodIds().GetOffset());
469 CreateAndAddIndexedItem(header_->MethodIds(),
470 header_->MethodIds().GetOffset() + i * MethodId::ItemSize(),
540 field_or_method_id = header_->MethodIds()[index];
    [all...]
dex_writer.cc 340 for (auto& method_id : header_->MethodIds()) {
350 header_->MethodIds().SetOffset(start);
744 header_->MethodIds().Size(),
745 header_->MethodIds().GetOffset()));
    [all...]
dexlayout.cc 422 if (index < header->MethodIds().Size()) {
423 dex_ir::MethodId* method_id = header->MethodIds()[index];
455 if (index < header->MethodIds().Size()) {
456 dex_ir::MethodId* method_id = header->MethodIds()[index];
610 fprintf(out_file_, "method_ids_size : %d\n", header_->MethodIds().Size());
612 header_->MethodIds().GetOffset(), header_->MethodIds().GetOffset());
    [all...]
dex_visualize.cc 199 for (dex_ir::MethodId* method_id : fixups->MethodIds()) {
dex_ir.h 446 IndexedCollectionVector<MethodId>& MethodIds() { return method_ids_; }
447 const IndexedCollectionVector<MethodId>& MethodIds() const { return method_ids_; }
    [all...]
dex_verify.cc 41 !VerifyIds(orig_header->MethodIds(), output_header->MethodIds(), "method ids", error_msg)) {
    [all...]

Completed in 168 milliseconds