HomeSort by relevance Sort by last modified time
    Searched full:annotation (Results 1 - 25 of 2931) 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/proguard/examples/annotations/lib/
annotations.jar 
  /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;
WillClose.java 1 package javax.annotation;
3 import java.lang.annotation.Documented;
4 import java.lang.annotation.Retention;
5 import java.lang.annotation.RetentionPolicy;
WillCloseWhenClosed.java 1 package javax.annotation;
3 import java.lang.annotation.Documented;
4 import java.lang.annotation.Retention;
5 import java.lang.annotation.RetentionPolicy;
  /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/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;
FixedLengthString.java 1 import java.lang.annotation.Documented;
2 import java.lang.annotation.Retention;
3 import java.lang.annotation.RetentionPolicy;
5 import javax.annotation.meta.TypeQualifier;
6 import javax.annotation.meta.TypeQualifierValidator;
7 import javax.annotation.meta.When;
17 public When forConstantValue(FixedLengthString annotation, Object v) {
21 if (s.length() == annotation.value())
  /libcore/luni/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/
TestAnnotation2.java 1 package org.apache.harmony.annotation.tests.java.lang.annotation;
3 import java.lang.annotation.ElementType;
4 import java.lang.annotation.Retention;
5 import java.lang.annotation.RetentionPolicy;
6 import java.lang.annotation.Target;
TestAnnotation4.java 1 package org.apache.harmony.annotation.tests.java.lang.annotation;
3 import java.lang.annotation.ElementType;
4 import java.lang.annotation.Retention;
5 import java.lang.annotation.RetentionPolicy;
6 import java.lang.annotation.Target;
TestEnum1.java 1 package org.apache.harmony.annotation.tests.java.lang.annotation;
TestEnum1b.java 1 package org.apache.harmony.annotation.tests.java.lang.annotation;
  /external/jsr305/ri/src/main/java/javax/annotation/meta/
TypeQualifierDefault.java 1 package javax.annotation.meta;
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;
10 * This qualifier is applied to an annotation to denote that the annotation
  /external/proguard/src/proguard/classfile/attribute/annotation/visitor/
ElementValueVisitor.java 21 package proguard.classfile.attribute.annotation.visitor;
24 import proguard.classfile.attribute.annotation.*;
34 public void visitConstantElementValue( Clazz clazz, Annotation annotation, ConstantElementValue constantElementValue);
35 public void visitEnumConstantElementValue(Clazz clazz, Annotation annotation, EnumConstantElementValue enumConstantElementValue);
36 public void visitClassElementValue( Clazz clazz, Annotation annotation, ClassElementValue classElementValue);
37 public void visitAnnotationElementValue( Clazz clazz, Annotation annotation, AnnotationElementValue annotationElementValue)
    [all...]
  /dalvik/dx/tests/081-dex-throws-list/
expected.txt 2 system-annotation dalvik.annotation.Throws {value: {java.lang.RuntimeException}}
4 system-annotation dalvik.annotation.Throws {value: {java.lang.Throwable, java.lang.IllegalArgumentException}}

Completed in 660 milliseconds

1 2 3 4 5 6 7 8 91011>>