Home
last modified time | relevance | path

Searched refs:parameterAnnotations (Results 1 – 5 of 5) sorted by relevance

/dalvik/dx/src/com/android/dx/cf/attrib/
DBaseParameterAnnotations.java27 private final AnnotationsList parameterAnnotations; field in BaseParameterAnnotations
42 AnnotationsList parameterAnnotations, int byteLength) { in BaseParameterAnnotations() argument
46 if (parameterAnnotations.isMutable()) { in BaseParameterAnnotations()
55 this.parameterAnnotations = parameterAnnotations; in BaseParameterAnnotations()
72 return parameterAnnotations; in getParameterAnnotations()
DAttRuntimeInvisibleParameterAnnotations.java39 AnnotationsList parameterAnnotations, int byteLength) { in AttRuntimeInvisibleParameterAnnotations() argument
40 super(ATTRIBUTE_NAME, parameterAnnotations, byteLength); in AttRuntimeInvisibleParameterAnnotations()
/dalvik/dexgen/src/com/android/dexgen/dex/file/
DAnnotationsDirectoryItem.java53 private ArrayList<ParameterAnnotationStruct> parameterAnnotations; field in AnnotationsDirectoryItem
64 parameterAnnotations = null; in AnnotationsDirectoryItem()
83 (parameterAnnotations == null); in isEmpty()
98 (parameterAnnotations == null); in isInternable()
190 if (parameterAnnotations == null) { in addParameterAnnotations()
191 parameterAnnotations = new ArrayList<ParameterAnnotationStruct>(); in addParameterAnnotations()
194 parameterAnnotations.add(new ParameterAnnotationStruct(method, list)); in addParameterAnnotations()
226 if (parameterAnnotations == null) { in getParameterAnnotations()
230 for (ParameterAnnotationStruct item : parameterAnnotations) { in getParameterAnnotations()
259 if (parameterAnnotations != null) { in addContents()
[all …]
/dalvik/dx/src/com/android/dx/dex/file/
DAnnotationsDirectoryItem.java52 private ArrayList<ParameterAnnotationStruct> parameterAnnotations; field in AnnotationsDirectoryItem
63 parameterAnnotations = null; in AnnotationsDirectoryItem()
82 (parameterAnnotations == null); in isEmpty()
97 (parameterAnnotations == null); in isInternable()
193 if (parameterAnnotations == null) { in addParameterAnnotations()
194 parameterAnnotations = new ArrayList<ParameterAnnotationStruct>(); in addParameterAnnotations()
197 parameterAnnotations.add(new ParameterAnnotationStruct(method, list, dexFile)); in addParameterAnnotations()
229 if (parameterAnnotations == null) { in getParameterAnnotations()
233 for (ParameterAnnotationStruct item : parameterAnnotations) { in getParameterAnnotations()
263 if (parameterAnnotations != null) { in addContents()
[all …]
/dalvik/dx/src/com/android/dx/command/dexer/
DMain.java1122 AnnotationsList parameterAnnotations = in dumpMethod() local
1132 if (parameterAnnotations != null) { in dumpMethod()
1134 int sz = parameterAnnotations.size(); in dumpMethod()
1137 Annotations annotations = parameterAnnotations.get(i); in dumpMethod()