Searched refs:classDefIndex (Results 1 – 2 of 2) sorted by relevance
465 public int typeIndexFromClassDefIndex(int classDefIndex) { in typeIndexFromClassDefIndex() argument466 checkBounds(classDefIndex, tableOfContents.classDefs.size); in typeIndexFromClassDefIndex()467 int position = tableOfContents.classDefs.off + (SizeOf.CLASS_DEF_ITEM * classDefIndex); in typeIndexFromClassDefIndex()474 public int annotationDirectoryOffsetFromClassDefIndex(int classDefIndex) { in annotationDirectoryOffsetFromClassDefIndex() argument475 checkBounds(classDefIndex, tableOfContents.classDefs.size); in annotationDirectoryOffsetFromClassDefIndex()476 int position = tableOfContents.classDefs.off + (SizeOf.CLASS_DEF_ITEM * classDefIndex); in annotationDirectoryOffsetFromClassDefIndex()489 public short[] interfaceTypeIndicesFromClassDefIndex(int classDefIndex) { in interfaceTypeIndicesFromClassDefIndex() argument490 checkBounds(classDefIndex, tableOfContents.classDefs.size); in interfaceTypeIndicesFromClassDefIndex()491 int position = tableOfContents.classDefs.off + (SizeOf.CLASS_DEF_ITEM * classDefIndex); in interfaceTypeIndicesFromClassDefIndex()
2569 int classDefIndex = getDexClassDefIndex(); in getDexAnnotationDirectoryOffset() local2570 if (classDefIndex < 0) { in getDexAnnotationDirectoryOffset()2573 return dex.annotationDirectoryOffsetFromClassDefIndex(classDefIndex); in getDexAnnotationDirectoryOffset()