Home
last modified time | relevance | path

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

/dalvik/dexgen/src/com/android/dexgen/dex/file/
DAnnotationsDirectoryItem.java50 private ArrayList<MethodAnnotationStruct> methodAnnotations; field in AnnotationsDirectoryItem
63 methodAnnotations = null; in AnnotationsDirectoryItem()
82 (methodAnnotations == null) && in isEmpty()
97 (methodAnnotations == null) && in isInternable()
174 if (methodAnnotations == null) { in addMethodAnnotations()
175 methodAnnotations = new ArrayList<MethodAnnotationStruct>(); in addMethodAnnotations()
178 methodAnnotations.add(new MethodAnnotationStruct(method, in addMethodAnnotations()
205 if (methodAnnotations == null) { in getMethodAnnotations()
209 for (MethodAnnotationStruct item : methodAnnotations) { in getMethodAnnotations()
253 if (methodAnnotations != null) { in addContents()
[all …]
/dalvik/dx/src/com/android/dx/dex/file/
DAnnotationsDirectoryItem.java50 private ArrayList<MethodAnnotationStruct> methodAnnotations; field in AnnotationsDirectoryItem
63 methodAnnotations = null; in AnnotationsDirectoryItem()
82 (methodAnnotations == null) && in isEmpty()
97 (methodAnnotations == null) && in isInternable()
177 if (methodAnnotations == null) { in addMethodAnnotations()
178 methodAnnotations = new ArrayList<MethodAnnotationStruct>(); in addMethodAnnotations()
181 methodAnnotations.add(new MethodAnnotationStruct(method, in addMethodAnnotations()
209 if (methodAnnotations == null) { in getMethodAnnotations()
213 for (MethodAnnotationStruct item : methodAnnotations) { in getMethodAnnotations()
257 if (methodAnnotations != null) { in addContents()
[all …]
/dalvik/dx/src/com/android/dx/command/dexer/
DMain.java1069 Annotations methodAnnotations = in dumpMethod() local
1074 if (methodAnnotations != null) { in dumpMethod()
1076 for (Annotation a : methodAnnotations.getAnnotations()) { in dumpMethod()