Home
last modified time | relevance | path

Searched refs:parameterAnnotations (Results 1 – 6 of 6) 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()
71 return parameterAnnotations; in getParameterAnnotations()
DAttRuntimeInvisibleParameterAnnotations.java39 AnnotationsList parameterAnnotations, int byteLength) { in AttRuntimeInvisibleParameterAnnotations() argument
40 super(ATTRIBUTE_NAME, parameterAnnotations, byteLength); in AttRuntimeInvisibleParameterAnnotations()
/dalvik/dx/src/com/android/dx/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/libcore/luni-kernel/src/main/java/java/lang/reflect/
DConstructor.java235 Annotation[][] parameterAnnotations in getParameterAnnotations() local
237 if (parameterAnnotations.length == 0) { in getParameterAnnotations()
240 return parameterAnnotations; in getParameterAnnotations()
DMethod.java277 Annotation[][] parameterAnnotations in getParameterAnnotations() local
279 if (parameterAnnotations.length == 0) { in getParameterAnnotations()
282 return parameterAnnotations; in getParameterAnnotations()
/dalvik/dx/src/com/android/dx/command/dexer/
DMain.java703 AnnotationsList parameterAnnotations = in dumpMethod() local
713 if (parameterAnnotations != null) { in dumpMethod()
715 int sz = parameterAnnotations.size(); in dumpMethod()
718 Annotations annotations = parameterAnnotations.get(i); in dumpMethod()