Home
last modified time | relevance | path

Searched refs:classAnnotations (Results 1 – 3 of 3) sorted by relevance

/dalvik/dx/src/com/android/dx/dex/file/
DAnnotationsDirectoryItem.java43 private AnnotationSetItem classAnnotations; field in AnnotationsDirectoryItem
60 classAnnotations = null; in AnnotationsDirectoryItem()
79 return (classAnnotations == null) && in isEmpty()
94 return (classAnnotations != null) && in isInternable()
103 if (classAnnotations == null) { in hashCode()
107 return classAnnotations.hashCode(); in hashCode()
126 return classAnnotations.compareTo(otherDirectory.classAnnotations); in compareTo0()
142 if (classAnnotations != null) { in setClassAnnotations()
147 classAnnotations = new AnnotationSetItem(annotations, dexFile); in setClassAnnotations()
247 if (classAnnotations != null) { in addContents()
[all …]
/dalvik/dexgen/src/com/android/dexgen/dex/file/
DAnnotationsDirectoryItem.java44 private AnnotationSetItem classAnnotations; field in AnnotationsDirectoryItem
61 classAnnotations = null; in AnnotationsDirectoryItem()
80 return (classAnnotations == null) && in isEmpty()
95 return (classAnnotations != null) && in isInternable()
104 if (classAnnotations == null) { in hashCode()
108 return classAnnotations.hashCode(); in hashCode()
127 return classAnnotations.compareTo(otherDirectory.classAnnotations); in compareTo0()
142 if (classAnnotations != null) { in setClassAnnotations()
147 classAnnotations = new AnnotationSetItem(annotations); in setClassAnnotations()
243 if (classAnnotations != null) { in addContents()
[all …]
/dalvik/dx/src/com/android/dx/dex/cf/
DCfTranslator.java139 Annotations classAnnotations = in translate0() local
141 if (classAnnotations.size() != 0) { in translate0()
142 out.setClassAnnotations(classAnnotations, dexFile); in translate0()