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

  /art/dexlayout/
dex_writer.cc 234 for (std::unique_ptr<dex_ir::StringId>& string_id : header_->GetCollections().StringIds()) {
244 header_->GetCollections().SetStringIdsOffset(start);
259 for (std::unique_ptr<dex_ir::StringData>& string_data : header_->GetCollections().StringDatas()) {
263 header_->GetCollections().SetStringDatasOffset(start);
270 for (std::unique_ptr<dex_ir::TypeId>& type_id : header_->GetCollections().TypeIds()) {
277 header_->GetCollections().SetTypeIdsOffset(start);
285 for (std::unique_ptr<dex_ir::TypeList>& type_list : header_->GetCollections().TypeLists()) {
296 header_->GetCollections().SetTypeListsOffset(start);
303 for (std::unique_ptr<dex_ir::ProtoId>& proto_id : header_->GetCollections().ProtoIds()) {
316 header_->GetCollections().SetProtoIdsOffset(start)
    [all...]
dexlayout.cc 420 if (index < header->GetCollections().TypeIdsSize()) {
421 const char* tp = header->GetCollections().GetTypeId(index)->GetStringId()->Data();
428 if (index < header->GetCollections().StringIdsSize()) {
429 const char* st = header->GetCollections().GetStringId(index)->Data();
436 if (index < header->GetCollections().MethodIdsSize()) {
437 dex_ir::MethodId* method_id = header->GetCollections().GetMethodId(index);
448 if (index < header->GetCollections().FieldIdsSize()) {
449 dex_ir::FieldId* field_id = header->GetCollections().GetFieldId(index);
469 if (index < header->GetCollections().MethodIdsSize()) {
470 dex_ir::MethodId* method_id = header->GetCollections().GetMethodId(index)
    [all...]
compact_dex_writer.cc 43 const dex_ir::Collections& collections = header_->GetCollections();
235 dex_ir::Collections& collections = header_->GetCollections();
285 const dex_ir::Collections& collections = header_->GetCollections();
335 dex_ir::Collections& collections = header_->GetCollections();
410 dex_ir::Collections& collection = header_->GetCollections();
dex_visualize.cc 255 const uint32_t class_defs_size = header->GetCollections().ClassDefsSize();
257 dex_ir::ClassDef* class_def = header->GetCollections().GetClassDef(class_index);
dex_ir_builder.cc 47 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 578 Collections& GetCollections() { return collections_; }
    [all...]

Completed in 177 milliseconds