Searched refs:annotation (Results 1 - 25 of 73) sorted by relevance

123

/dalvik/dexgen/src/com/android/dexgen/rop/cst/
H A DCstAnnotation.java19 import com.android.dexgen.rop.annotation.Annotation;
22 * Constant type that represents an annotation.
25 /** {@code non-null;} the actual annotation */
26 private final Annotation annotation; field in class:CstAnnotation
31 * @param annotation {@code non-null;} the annotation to hold
33 public CstAnnotation(Annotation annotation) { argument
34 if (annotation == null) {
35 throw new NullPointerException("annotation == null");
38 annotation
[all...]
/dalvik/dx/src/com/android/dx/rop/cst/
H A DCstAnnotation.java19 import com.android.dx.rop.annotation.Annotation;
22 * Constant type that represents an annotation.
25 /** {@code non-null;} the actual annotation */
26 private final Annotation annotation; field in class:CstAnnotation
31 * @param annotation {@code non-null;} the annotation to hold
33 public CstAnnotation(Annotation annotation) { argument
34 if (annotation == null) {
35 throw new NullPointerException("annotation == null");
38 annotation
[all...]
/dalvik/tests/004-annotations/src/android/test/anno/
H A DMissingAnnotation.java3 import java.lang.annotation.Retention;
4 import static java.lang.annotation.RetentionPolicy.RUNTIME;
H A DAnnoFancyConstructor.java3 import java.lang.annotation.*;
H A DAnnoFancyParameter.java3 import java.lang.annotation.*;
H A DAnnoSimpleConstructor.java3 import java.lang.annotation.*;
H A DAnnoSimpleField.java3 import java.lang.annotation.*;
H A DAnnoSimpleLocalVariable.java3 import java.lang.annotation.*;
H A DAnnoSimpleMethod.java3 import java.lang.annotation.*;
H A DAnnoSimplePackage.java3 import java.lang.annotation.*;
H A DAnnoSimpleParameter.java3 import java.lang.annotation.*;
H A DAnnoSimpleType2.java3 import java.lang.annotation.*;
H A DAnnoSimpleTypeInvis.java3 import java.lang.annotation.*;
H A DAnnoFancyField.java3 import java.lang.annotation.*;
H A DAnnoFancyType.java3 import java.lang.annotation.*;
H A DAnnoSimpleType.java3 import java.lang.annotation.*;
H A DIntToString.java4 import java.lang.annotation.*;
/dalvik/tests/004-annotations/src/android/test/
H A DAnnoSimplePackage1.java3 import java.lang.annotation.*;
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DAnnotationItem.java19 import com.android.dexgen.rop.annotation.Annotation;
20 import com.android.dexgen.rop.annotation.AnnotationVisibility;
21 import com.android.dexgen.rop.annotation.NameValuePair;
33 * Single annotation, which consists of a type and a set of name-value
37 /** annotation visibility constant: visible at build time only */
40 /** annotation visibility constant: visible at runtime */
43 /** annotation visibility constant: visible at runtime only to system */
52 /** {@code non-null;} the annotation to represent */
53 private final Annotation annotation; field in class:AnnotationItem
56 * {@code null-ok;} type reference for the annotation typ
102 AnnotationItem(Annotation annotation) argument
[all...]
/dalvik/dx/src/com/android/dx/dex/file/
H A DAnnotationItem.java19 import com.android.dx.rop.annotation.Annotation;
20 import com.android.dx.rop.annotation.AnnotationVisibility;
21 import com.android.dx.rop.annotation.NameValuePair;
30 * Single annotation, which consists of a type and a set of name-value
34 /** annotation visibility constant: visible at build time only */
37 /** annotation visibility constant: visible at runtime */
40 /** annotation visibility constant: visible at runtime only to system */
49 /** {@code non-null;} the annotation to represent */
50 private final Annotation annotation; field in class:AnnotationItem
53 * {@code null-ok;} type reference for the annotation typ
99 AnnotationItem(Annotation annotation) argument
[all...]
/dalvik/dexgen/src/com/android/dexgen/rop/annotation/
H A DAnnotationVisibility.java17 package com.android.dexgen.rop.annotation;
22 * Visibility scope of an annotation.
/dalvik/dx/src/com/android/dx/cf/attrib/
H A DAttRuntimeInvisibleAnnotations.java19 import com.android.dx.rop.annotation.Annotations;
H A DAttRuntimeInvisibleParameterAnnotations.java19 import com.android.dx.rop.annotation.AnnotationsList;
H A DAttRuntimeVisibleAnnotations.java19 import com.android.dx.rop.annotation.Annotations;
H A DAttRuntimeVisibleParameterAnnotations.java19 import com.android.dx.rop.annotation.AnnotationsList;

Completed in 473 milliseconds

123