Lines Matching refs:dex
90 inline ObjPtr<mirror::Class> ArtMethod::LookupResolvedClassFromTypeIndex(dex::TypeIndex type_idx) { in LookupResolvedClassFromTypeIndex()
98 inline ObjPtr<mirror::Class> ArtMethod::ResolveClassFromTypeIndex(dex::TypeIndex type_idx) { in ResolveClassFromTypeIndex()
168 if (UNLIKELY(dex_method_idx == dex::kDexNoIndex)) { in GetDeclaringClassDescriptor()
189 if (dex_method_idx != dex::kDexNoIndex) { in GetSignature()
199 if (LIKELY(dex_method_idx != dex::kDexNoIndex)) { in GetName()
209 if (LIKELY(dex_method_idx != dex::kDexNoIndex)) { in GetNameView()
221 const dex::MethodId& method_id = GetDexFile()->GetMethodId(GetDexMethodIndex()); in ResolveNameString()
225 inline const dex::CodeItem* ArtMethod::GetCodeItem() { in GetCodeItem()
233 : reinterpret_cast<const dex::CodeItem*>( in GetCodeItem()
237 inline bool ArtMethod::IsResolvedTypeIdx(dex::TypeIndex type_idx) { in IsResolvedTypeIdx()
244 if (dex_pc == dex::kDexNoIndex) { in GetLineNumFromDexPC()
250 inline const dex::ProtoId& ArtMethod::GetPrototype() { in GetPrototype()
256 inline const dex::TypeList* ArtMethod::GetParameterTypeList() { in GetParameterTypeList()
259 const dex::ProtoId& proto = dex_file->GetMethodPrototype( in GetParameterTypeList()
278 inline const dex::ClassDef& ArtMethod::GetClassDef() { in GetClassDef()
298 inline const char* ArtMethod::GetTypeDescriptorFromTypeIdx(dex::TypeIndex type_idx) { in GetTypeDescriptorFromTypeIdx()
346 inline dex::TypeIndex ArtMethod::GetReturnTypeIndex() { in GetReturnTypeIndex()
349 const dex::MethodId& method_id = dex_file->GetMethodId(GetDexMethodIndex()); in GetReturnTypeIndex()
350 const dex::ProtoId& proto_id = dex_file->GetMethodPrototype(method_id); in GetReturnTypeIndex()