HomeSort by relevance Sort by last modified time
    Searched defs:parameterAnnotations (Results 1 - 22 of 22) 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 52 private ArrayList<ParameterAnnotationStruct> parameterAnnotations;
63 parameterAnnotations = null;
82 (parameterAnnotations == null);
97 (parameterAnnotations == null);
189 if (parameterAnnotations == null) {
190 parameterAnnotations = new ArrayList<ParameterAnnotationStruct>();
193 parameterAnnotations.add(new ParameterAnnotationStruct(method, list));
225 if (parameterAnnotations == null) {
229 for (ParameterAnnotationStruct item : parameterAnnotations) {
258 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/baksmali/src/main/java/org/jf/baksmali/Adaptors/
ClassDefinition.java 321 AnnotationSetRefList parameterAnnotations = null;
325 parameterAnnotations = annotations.getParameterAnnotations(method.method);
338 methodDefinition.writeTo(methodWriter, methodAnnotations, parameterAnnotations);
  /libcore/libdvm/src/main/java/java/lang/reflect/
Constructor.java 235 Annotation[][] parameterAnnotations
237 if (parameterAnnotations.length == 0) {
240 return parameterAnnotations;
Method.java 302 Annotation[][] parameterAnnotations
304 if (parameterAnnotations.length == 0) {
307 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]));
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
AnnotationDirectoryItem.java 49 private ParameterAnnotation[] parameterAnnotations;
67 * @param parameterAnnotations A list of <code>ParameterAnnotation</code> objects that contain the parameter
73 @Nullable List<ParameterAnnotation> parameterAnnotations) {
93 if (parameterAnnotations == null || parameterAnnotations.size() == 0) {
94 this.parameterAnnotations = null;
96 this.parameterAnnotations = new ParameterAnnotation[parameterAnnotations.size()];
97 this.parameterAnnotations = parameterAnnotations.toArray(this.parameterAnnotations)
    [all...]
  /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     [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 
  /prebuilts/misc/common/ecj/
ecj.jar 
  /external/robolectric/lib/main/
junit-dep-4.8.2.jar 
  /prebuilts/tools/common/m2/internal/net/sf/proguard/proguard-base/4.9/
proguard-base-4.9.jar 
  /prebuilts/sdk/tools/lib/
dx.jar 
  /external/proguard/lib/
proguard.jar 
  /prebuilts/tools/common/proguard/proguard4.7/lib/
proguard.jar 
  /prebuilts/devtools/tools/lib/
jython-standalone-2.5.3.jar 
  /prebuilts/tools/common/m2/repository/org/python/jython-standalone/2.5.3/
jython-standalone-2.5.3.jar 

Completed in 497 milliseconds