HomeSort by relevance Sort by last modified time
    Searched full:annotation (Results 1 - 25 of 2313) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/jsr305/javadoc/
package-list 1 javax.annotation
2 javax.annotation.concurrent
3 javax.annotation.meta
allclasses-frame.html 23 <TD NOWRAP><FONT CLASS="FrameItemFont"><A HREF="javax/annotation/CheckForNull.html" title="annotation in javax.annotation" target="classFrame">CheckForNull</A>
25 <A HREF="javax/annotation/CheckForSigned.html" title="annotation in javax.annotation" target="classFrame">CheckForSigned</A>
27 <A HREF="javax/annotation/CheckReturnValue.html" title="annotation in javax.annotation" target="classFrame">CheckReturnValue</A>
29 <A HREF="javax/annotation/Detainted.html" title="annotation in javax.annotation" target="classFrame">Detainted</A
    [all...]
allclasses-noframe.html 23 <TD NOWRAP><FONT CLASS="FrameItemFont"><A HREF="javax/annotation/CheckForNull.html" title="annotation in javax.annotation">CheckForNull</A>
25 <A HREF="javax/annotation/CheckForSigned.html" title="annotation in javax.annotation">CheckForSigned</A>
27 <A HREF="javax/annotation/CheckReturnValue.html" title="annotation in javax.annotation">CheckReturnValue</A>
29 <A HREF="javax/annotation/Detainted.html" title="annotation in javax.annotation">Detainted</A
    [all...]
overview-tree.html 82 <DT><B>Package Hierarchies:</B><DD><A HREF="javax/annotation/package-tree.html">javax.annotation</A>, <A HREF="javax/annotation/concurrent/package-tree.html">javax.annotation.concurrent</A>, <A HREF="javax/annotation/meta/package-tree.html">javax.annotation.meta</A></DL>
89 <LI TYPE="circle">javax.annotation.<A HREF="javax/annotation/MatchesPattern.Checker.html" title="class in javax.annotation"><B>MatchesPattern.Checker</B></A> (implements javax.annotation.meta.<A HREF="javax/annotation/meta/TypeQualifierValidator.html" title="interface in javax.annotat (…)
    [all...]
  /external/smali/examples/AnnotationTypes/
ClassAnnotation.smali 1 .class public abstract interface annotation LClassAnnotation;
3 .implements Ljava/lang/annotation/Annotation;
FieldAnnotation.smali 1 .class public abstract interface annotation LFieldAnnotation;
3 .implements Ljava/lang/annotation/Annotation;
MethodAnnotation.smali 1 .class public abstract interface annotation LMethodAnnotation;
3 .implements Ljava/lang/annotation/Annotation;
ParameterAnnotation.smali 1 .class public abstract interface annotation LParameterAnnotation;
3 .implements Ljava/lang/annotation/Annotation
  /external/proguard/examples/annotations/lib/
annotations.jar 
  /prebuilts/tools/common/proguard/proguard4.7/examples/annotations/lib/
annotations.jar 
  /external/smali/smali-integration-tests/src/test/smali/junit-tests/AnnotationTests/
TestAnnotationClass.smali 1 .class public abstract interface annotation LTestAnnotationClass;
3 .implements Ljava/lang/annotation/Annotation;
8 .annotation system Ldalvik/annotation/AnnotationDefault;
10 stringValue = "Test Annotation String Value"
12 .end annotation
  /external/smali/examples/RecursiveAnnotation/
RecursiveAnnotation.smali 1 .class public abstract interface annotation LRecursiveAnnotation;
3 .implements Ljava/lang/annotation/Annotation;
5 #this is a recursive annotation that has a default value of itself.
6 #Trying to print .toString() on an instance of this annotation
12 .annotation system Ldalvik/annotation/AnnotationDefault;
17 .end annotation
  /external/jsr305/ri/src/main/java/javax/annotation/
CheckForNull.java 1 package javax.annotation;
3 import java.lang.annotation.Documented;
4 import java.lang.annotation.Retention;
5 import java.lang.annotation.RetentionPolicy;
7 import javax.annotation.meta.TypeQualifierNickname;
8 import javax.annotation.meta.When;
Detainted.java 1 package javax.annotation;
3 import java.lang.annotation.Documented;
4 import java.lang.annotation.Retention;
5 import java.lang.annotation.RetentionPolicy;
7 import javax.annotation.meta.TypeQualifierNickname;
8 import javax.annotation.meta.When;
Nullable.java 1 package javax.annotation;
3 import java.lang.annotation.Documented;
4 import java.lang.annotation.Retention;
5 import java.lang.annotation.RetentionPolicy;
7 import javax.annotation.meta.TypeQualifierNickname;
8 import javax.annotation.meta.When;
PropertyKey.java 1 package javax.annotation;
3 import java.lang.annotation.Documented;
4 import java.lang.annotation.Retention;
5 import java.lang.annotation.RetentionPolicy;
7 import javax.annotation.meta.TypeQualifier;
8 import javax.annotation.meta.When;
Tainted.java 1 package javax.annotation;
3 import java.lang.annotation.Documented;
4 import java.lang.annotation.Retention;
5 import java.lang.annotation.RetentionPolicy;
7 import javax.annotation.meta.TypeQualifierNickname;
8 import javax.annotation.meta.When;
Untainted.java 1 package javax.annotation;
3 import java.lang.annotation.Documented;
4 import java.lang.annotation.Retention;
5 import java.lang.annotation.RetentionPolicy;
7 import javax.annotation.meta.TypeQualifier;
8 import javax.annotation.meta.When;
CheckReturnValue.java 1 package javax.annotation;
3 import java.lang.annotation.Documented;
4 import java.lang.annotation.ElementType;
5 import java.lang.annotation.Retention;
6 import java.lang.annotation.RetentionPolicy;
7 import java.lang.annotation.Target;
9 import javax.annotation.meta.When;
Signed.java 1 package javax.annotation;
3 import java.lang.annotation.Documented;
4 import java.lang.annotation.Retention;
5 import java.lang.annotation.RetentionPolicy;
7 import javax.annotation.meta.TypeQualifierNickname;
8 import javax.annotation.meta.When;
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstAnnotation.java 19 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) {
    [all...]
  /dalvik/dx/src/com/android/dx/rop/cst/
CstAnnotation.java 19 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) {
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
CstAnnotation.java 19 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) {
    [all...]
  /external/smali/examples/AnnotationValues/
SubAnnotation.smali 1 .class public abstract interface annotation LSubAnnotation;
3 .implements Ljava/lang/annotation/Annotation;
  /external/jsr305/sampleUses/src/main/java/
SocialSecurityNumber.java 1 import java.lang.annotation.Documented;
2 import java.lang.annotation.ElementType;
3 import java.lang.annotation.Retention;
4 import java.lang.annotation.RetentionPolicy;
6 import javax.annotation.MatchesPattern;
7 import javax.annotation.meta.TypeQualifierNickname;

Completed in 703 milliseconds

1 2 3 4 5 6 7 8 91011>>