Home | History | Annotate | Download | only in dex

Lines Matching refs:method_id

92 inline const char* DexFile::GetMethodDeclaringClassDescriptor(const MethodId& method_id) const {
93 const DexFile::TypeId& type_id = GetTypeId(method_id.class_idx_);
97 inline const Signature DexFile::GetMethodSignature(const MethodId& method_id) const {
98 return Signature(this, GetProtoId(method_id.proto_idx_));
105 inline const char* DexFile::GetMethodName(const MethodId& method_id) const {
106 return StringDataByIdx(method_id.name_idx_);
113 inline const char* DexFile::GetMethodShorty(const MethodId& method_id) const {
114 return StringDataByIdx(GetProtoId(method_id.proto_idx_).shorty_idx_);
117 inline const char* DexFile::GetMethodShorty(const MethodId& method_id, uint32_t* length) const {
119 return StringDataAndUtf16LengthByIdx(GetProtoId(method_id.proto_idx_).shorty_idx_, length);