Lines Matching refs:ref
42 static std::string GetTypeDescriptor(const TypeReference& ref) { in GetTypeDescriptor() argument
43 const dex::TypeId& type_id = ref.dex_file->GetTypeId(ref.TypeIndex()); in GetTypeDescriptor()
44 return ref.dex_file->GetTypeDescriptor(type_id); in GetTypeDescriptor()
48 static std::string BootImageRepresentation(const MethodReference& ref) { in BootImageRepresentation() argument
49 const DexFile* dex_file = ref.dex_file; in BootImageRepresentation()
50 const dex::MethodId& id = ref.GetMethodId(); in BootImageRepresentation()
61 static std::string BootImageRepresentation(const TypeReference& ref) { in BootImageRepresentation() argument
62 return GetTypeDescriptor(ref); in BootImageRepresentation()
66 static std::string PreloadedClassesRepresentation(const TypeReference& ref) { in PreloadedClassesRepresentation() argument
67 std::string descriptor = GetTypeDescriptor(ref); in PreloadedClassesRepresentation()
120 static bool MaybeIsClassClean(const TypeReference& ref) { in MaybeIsClassClean() argument
121 const dex::ClassDef* class_def = ref.dex_file->FindClassDef(ref.TypeIndex()); in MaybeIsClassClean()
126 ClassAccessor accessor(*ref.dex_file, *class_def); in MaybeIsClassClean()