Lines Matching refs:DexFile
300 return GetDexMethodIndex() == DexFile::kDexNoIndex; in IsRuntimeMethod()
401 inline const DexFile* ArtMethod::GetDexFile() { in GetDexFile()
408 if (UNLIKELY(dex_method_idx == DexFile::kDexNoIndex)) { in GetDeclaringClassDescriptor()
411 const DexFile* dex_file = method->GetDexFile(); in GetDeclaringClassDescriptor()
417 const DexFile* dex_file = method->GetDexFile(); in GetShorty()
424 if (dex_method_idx != DexFile::kDexNoIndex) { in GetSignature()
425 const DexFile* dex_file = method->GetDexFile(); in GetSignature()
434 if (LIKELY(dex_method_idx != DexFile::kDexNoIndex)) { in GetName()
435 const DexFile* dex_file = method->GetDexFile(); in GetName()
454 inline const DexFile::CodeItem* ArtMethod::GetCodeItem() { in GetCodeItem()
466 if (dex_pc == DexFile::kDexNoIndex) { in GetLineNumFromDexPC()
472 inline const DexFile::ProtoId& ArtMethod::GetPrototype() { in GetPrototype()
474 const DexFile* dex_file = method->GetDexFile(); in GetPrototype()
478 inline const DexFile::TypeList* ArtMethod::GetParameterTypeList() { in GetParameterTypeList()
480 const DexFile* dex_file = method->GetDexFile(); in GetParameterTypeList()
481 const DexFile::ProtoId& proto = dex_file->GetMethodPrototype( in GetParameterTypeList()
494 inline const DexFile::ClassDef& ArtMethod::GetClassDef() { in GetClassDef()
501 const DexFile* dex_file = method->GetDexFile(); in GetReturnTypeDescriptor()
502 const DexFile::MethodId& method_id = dex_file->GetMethodId(method->GetDexMethodIndex()); in GetReturnTypeDescriptor()
503 const DexFile::ProtoId& proto_id = dex_file->GetMethodPrototype(method_id); in GetReturnTypeDescriptor()
510 const DexFile* dex_file = method->GetDexFile(); in GetTypeDescriptorFromTypeIdx()