HomeSort by relevance Sort by last modified time
    Searched defs:parameterAnnotations (Results 1 - 17 of 17) sorted by null

  /dalvik/dx/src/com/android/dx/cf/attrib/
BaseParameterAnnotations.java 27 private final AnnotationsList parameterAnnotations;
37 * @param parameterAnnotations {@code non-null;} the annotations
42 AnnotationsList parameterAnnotations, int byteLength) {
46 if (parameterAnnotations.isMutable()) {
48 "parameterAnnotations.isMutable()");
52 throw new NullPointerException("parameterAnnotations == null");
55 this.parameterAnnotations = parameterAnnotations;
71 return parameterAnnotations;
  /external/proguard/src/proguard/classfile/attribute/annotation/
ParameterAnnotationsAttribute.java 36 public Annotation[][] parameterAnnotations;
53 Annotation[][] parameterAnnotations)
59 this.parameterAnnotations = parameterAnnotations;
72 Annotation[] annotations = parameterAnnotations[parameterIndex];
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
AnnotationsDirectoryItem.java 53 private ArrayList<ParameterAnnotationStruct> parameterAnnotations;
64 parameterAnnotations = null;
83 (parameterAnnotations == null);
98 (parameterAnnotations == null);
190 if (parameterAnnotations == null) {
191 parameterAnnotations = new ArrayList<ParameterAnnotationStruct>();
194 parameterAnnotations.add(new ParameterAnnotationStruct(method, list));
226 if (parameterAnnotations == null) {
230 for (ParameterAnnotationStruct item : parameterAnnotations) {
259 if (parameterAnnotations != null)
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
AnnotationsDirectoryItem.java 53 private ArrayList<ParameterAnnotationStruct> parameterAnnotations;
64 parameterAnnotations = null;
83 (parameterAnnotations == null);
98 (parameterAnnotations == null);
190 if (parameterAnnotations == null) {
191 parameterAnnotations = new ArrayList<ParameterAnnotationStruct>();
194 parameterAnnotations.add(new ParameterAnnotationStruct(method, list));
226 if (parameterAnnotations == null) {
230 for (ParameterAnnotationStruct item : parameterAnnotations) {
259 if (parameterAnnotations != null)
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
AnnotationsDirectoryItem.java 53 private ArrayList<ParameterAnnotationStruct> parameterAnnotations;
64 parameterAnnotations = null;
83 (parameterAnnotations == null);
98 (parameterAnnotations == null);
190 if (parameterAnnotations == null) {
191 parameterAnnotations = new ArrayList<ParameterAnnotationStruct>();
194 parameterAnnotations.add(new ParameterAnnotationStruct(method, list));
226 if (parameterAnnotations == null) {
230 for (ParameterAnnotationStruct item : parameterAnnotations) {
259 if (parameterAnnotations != null)
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
AnnotationDirectoryItem.java 48 private AnnotationSetRefList[] parameterAnnotations;
80 * <code>parameterAnnotations</code> are associated with
81 * @param parameterAnnotations An array of <code>AnnotationSetRefList</code> objects that contain the parameter
88 AnnotationSetRefList[] parameterAnnotations) {
96 this.parameterAnnotations = parameterAnnotations;
106 * @param parameterAnnotations A list of <code>ParameterAnnotation</code> objects containin the parameter
115 List<ParameterAnnotation> parameterAnnotations) {
149 if (parameterAnnotations != null && parameterAnnotations.size() > 0)
    [all...]
  /libcore/luni/src/main/java/java/lang/reflect/
Constructor.java 229 Annotation[][] parameterAnnotations
231 if (parameterAnnotations.length == 0) {
234 return parameterAnnotations;
Method.java 311 Annotation[][] parameterAnnotations
313 if (parameterAnnotations.length == 0) {
316 return parameterAnnotations;
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
AnnotationsTest.java 59 Annotation[][] parameterAnnotations = method.getParameterAnnotations();
60 assertEquals(2, parameterAnnotations.length);
62 annotationsToTypes(parameterAnnotations[0]));
64 annotationsToTypes(parameterAnnotations[1]));
  /cts/tools/dex-tools/src/dex/reader/
DexClassImpl.java 92 ParameterAnnotation[] parameterAnnotations;
156 annotationDir.parameterAnnotations =
160 annotationDir.parameterAnnotations[i] =
162 annotationDir.parameterAnnotations[i].methodIdx = buffer
164 annotationDir.parameterAnnotations[i].annotationsOff =
167 annotationDir.parameterAnnotations[i].methodIdx,
168 annotationDir.parameterAnnotations[i]);
  /dalvik/dx/src/com/android/dx/command/dexer/
Main.java 839 AnnotationsList parameterAnnotations =
849 if (parameterAnnotations != null) {
851 int sz = parameterAnnotations.size();
854 Annotations annotations = parameterAnnotations.get(i);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.repository.tools_2.0.1.R36x_v20100823.jar 
org.eclipse.jdt.core_3.6.2.v_A76_R36x.jar 
  /prebuilt/common/ecj/
ecj.jar 
  /prebuilts/sdk/tools/lib/
dx.jar 
  /external/proguard/lib/
proguard.jar 
  /prebuilts/tools/common/proguard/proguard4.7/lib/
proguard.jar 

Completed in 415 milliseconds