Lines Matching refs:DexFile
308 return GetDexMethodIndex() == DexFile::kDexNoIndex; in IsRuntimeMethod()
412 inline const DexFile* ArtMethod::GetDexFile() { in GetDexFile()
419 if (UNLIKELY(dex_method_idx == DexFile::kDexNoIndex)) { in GetDeclaringClassDescriptor()
422 const DexFile* dex_file = method->GetDexFile(); in GetDeclaringClassDescriptor()
428 const DexFile* dex_file = method->GetDexFile(); in GetShorty()
435 if (dex_method_idx != DexFile::kDexNoIndex) { in GetSignature()
436 const DexFile* dex_file = method->GetDexFile(); in GetSignature()
445 if (LIKELY(dex_method_idx != DexFile::kDexNoIndex)) { in GetName()
446 const DexFile* dex_file = method->GetDexFile(); in GetName()
465 inline const DexFile::CodeItem* ArtMethod::GetCodeItem() { in GetCodeItem()
477 if (dex_pc == DexFile::kDexNoIndex) { in GetLineNumFromDexPC()
483 inline const DexFile::ProtoId& ArtMethod::GetPrototype() { in GetPrototype()
485 const DexFile* dex_file = method->GetDexFile(); in GetPrototype()
489 inline const DexFile::TypeList* ArtMethod::GetParameterTypeList() { in GetParameterTypeList()
491 const DexFile* dex_file = method->GetDexFile(); in GetParameterTypeList()
492 const DexFile::ProtoId& proto = dex_file->GetMethodPrototype( in GetParameterTypeList()
505 inline const DexFile::ClassDef& ArtMethod::GetClassDef() { in GetClassDef()
512 const DexFile* dex_file = method->GetDexFile(); in GetReturnTypeDescriptor()
513 const DexFile::MethodId& method_id = dex_file->GetMethodId(method->GetDexMethodIndex()); in GetReturnTypeDescriptor()
514 const DexFile::ProtoId& proto_id = dex_file->GetMethodPrototype(method_id); in GetReturnTypeDescriptor()
521 const DexFile* dex_file = method->GetDexFile(); in GetTypeDescriptorFromTypeIdx()