Home
last modified time | relevance | path

Searched refs:shorty_idx_ (Results 1 – 7 of 7) sorted by relevance

/art/libdexfile/dex/
Dsignature-inl.h37 const char* lhs_shorty_data = dex_file_->StringDataAndUtf16LengthByIdx(proto_id_->shorty_idx_,
43 rhs.dex_file_->StringDataAndUtf16LengthByIdx(rhs.proto_id_->shorty_idx_,
Ddex_file-inl.h138 return StringDataByIdx(GetProtoId(GetMethodId(idx).proto_idx_).shorty_idx_); in GetMethodShorty()
142 return StringDataByIdx(GetProtoId(method_id.proto_idx_).shorty_idx_); in GetMethodShorty()
148 return StringDataAndUtf16LengthByIdx(GetProtoId(method_id.proto_idx_).shorty_idx_, length); in GetMethodShorty()
161 return StringDataByIdx(proto_id.shorty_idx_); in GetShorty()
Ddex_file_structs.h79 dex::StringIndex shorty_idx_; // index into string_ids array for shorty descriptor member
Ddex_file_verifier_test.cc1431 std::swap(const_cast<dex::StringIndex&>(proto1.shorty_idx_), in TEST_F()
1432 const_cast<dex::StringIndex&>(proto2.shorty_idx_)); in TEST_F()
1436 const_cast<dex::StringIndex&>(proto1.shorty_idx_) = proto2.shorty_idx_; in TEST_F()
Ddex_file_verifier.cc1249 if (!CheckIndex(proto_id->shorty_idx_.index_, header_->string_ids_size_, "proto_id.shorty") || in CheckIntraProtoIdItem()
2532 const char* shorty = dex_file_->StringDataByIdx(item->shorty_idx_); in CheckInterProtoIdItem()
/art/dexlayout/
Ddex_ir_builder.cc453 header_->StringIds()[disk_proto_id.shorty_idx_.index_], in CreateProtoId()
/art/runtime/
Dclass_linker.cc9151 const size_t num_method_args = strlen(dex_file.StringDataByIdx(proto_id.shorty_idx_)) - 1; in ResolveMethodType()