Home
last modified time | relevance | path

Searched refs:MethodIdsSection (Results 1 – 12 of 12) sorted by relevance

/dalvik/dx/src/com/android/dx/dex/file/
DMethodIdsSection.java30 public final class MethodIdsSection extends MemberIdsSection { class
42 public MethodIdsSection(DexFile file) { in MethodIdsSection() method in MethodIdsSection
DMemberIdsSection.java74 String memberType = this instanceof MethodIdsSection ? "method" : "field"; in getTooManyMembersMessage()
DMethodAnnotationStruct.java77 MethodIdsSection methodIds = file.getMethodIds(); in addContents()
DDexFile.java80 private final MethodIdsSection methodIds;
123 methodIds = new MethodIdsSection(this); in DexFile()
391 public MethodIdsSection getMethodIds() { in getMethodIds()
DParameterAnnotationStruct.java102 MethodIdsSection methodIds = file.getMethodIds(); in addContents()
DEncodedMethod.java116 MethodIdsSection methodIds = file.getMethodIds(); in addContents()
/dalvik/dexgen/src/com/android/dexgen/dex/file/
DMethodIdsSection.java30 public final class MethodIdsSection extends MemberIdsSection { class
42 public MethodIdsSection(DexFile file) { in MethodIdsSection() method in MethodIdsSection
DMethodAnnotationStruct.java77 MethodIdsSection methodIds = file.getMethodIds(); in addContents()
DDexFile.java77 private final MethodIdsSection methodIds;
118 methodIds = new MethodIdsSection(this); in DexFile()
372 /*package*/ MethodIdsSection getMethodIds() { in getMethodIds()
DParameterAnnotationStruct.java101 MethodIdsSection methodIds = file.getMethodIds(); in addContents()
DEncodedMethod.java117 MethodIdsSection methodIds = file.getMethodIds(); in addContents()
/dalvik/dx/src/com/android/dx/dex/cf/
DCfTranslator.java36 import com.android.dx.dex.file.MethodIdsSection;
135 MethodIdsSection methodIdsSection = dexFile.getMethodIds(); in translate0()