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

1 2 3 4 5 6 7 8 91011>>

  /external/junit-params/src/main/java/junitparams/internal/annotation/
CustomParametersDescriptor.java 1 package junitparams.internal.annotation;
3 import java.lang.annotation.Annotation;
10 private final Annotation customAnnotation;
18 public CustomParametersDescriptor(CustomParameters customParameters, Annotation customAnnotation) {
27 public Annotation annotation() { method in class:CustomParametersDescriptor
  /art/test/004-JniTest/src/dalvik/annotation/optimization/
CriticalNative.java 17 package dalvik.annotation.optimization;
19 import java.lang.annotation.ElementType;
20 import java.lang.annotation.Retention;
21 import java.lang.annotation.RetentionPolicy;
22 import java.lang.annotation.Target;
25 * Placeholder for the real FastNative annotation in the Android platform.
FastNative.java 17 package dalvik.annotation.optimization;
19 import java.lang.annotation.ElementType;
20 import java.lang.annotation.Retention;
21 import java.lang.annotation.RetentionPolicy;
22 import java.lang.annotation.Target;
25 * Placeholder for the real FastNative annotation in the Android platform.
  /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;
CheckForSigned.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;
OverridingMethodsMustInvokeSuper.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;
10 * When this annotation is applied to a method, it indicates that if this method
ParametersAreNonnullByDefault.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;
8 import javax.annotation.meta.TypeQualifierDefault;
11 * This annotation can be applied to a package, class or method to indicate that
14 * <li>An explicit nullness annotation
16 * annotation of the corresponding parameter in the superclass applies)
17 * <li> there is a default parameter annotation applied to a more tightly neste
    [all...]
ParametersAreNullableByDefault.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;
8 import javax.annotation.meta.TypeQualifierDefault;
11 * This annotation can be applied to a package, class or method to indicate that
14 * <li>An explicit nullness annotation
16 * annotation of the corresponding parameter in the superclass applies)
17 * <li> there is a default parameter annotation applied to a more tightly neste
    [all...]
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;
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;
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;
WillNotClose.java 1 package javax.annotation;
3 import java.lang.annotation.Documented;
4 import java.lang.annotation.Retention;
5 import java.lang.annotation.RetentionPolicy;
  /external/jsr305/ri/src/main/java/javax/annotation/concurrent/
Immutable.java 1 package javax.annotation.concurrent;
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;
19 * The class to which this annotation is applied is immutable. This means that
NotThreadSafe.java 1 package javax.annotation.concurrent;
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;
19 * The class to which this annotation is applied is not thread-safe. This
20 * annotation primarily exists for clarifying the non-thread-safety of a class
ThreadSafe.java 1 package javax.annotation.concurrent;
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;
12 * The class to which this annotation is applied is thread-safe. This means that
  /external/jsr305/ri/src/main/java/javax/annotation/meta/
Exclusive.java 1 package javax.annotation.meta;
3 import java.lang.annotation.Documented;
4 import java.lang.annotation.Retention;
5 import java.lang.annotation.RetentionPolicy;
8 * This annotation can be applied to the value() element of an annotation that
Exhaustive.java 1 package javax.annotation.meta;
3 import java.lang.annotation.Documented;
4 import java.lang.annotation.Retention;
5 import java.lang.annotation.RetentionPolicy;
8 * This annotation can be applied to the value() element of an annotation that
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
TypeQualifierNickname.java 1 package javax.annotation.meta;
3 import java.lang.annotation.Documented;
4 import java.lang.annotation.ElementType;
5 import java.lang.annotation.Target;
9 * This annotation is applied to a annotation, and marks the annotation as being
10 * a qualifier nickname. Applying a nickname annotation X to a element Y should
  /external/proguard/examples/annotations/src/proguard/annotation/
Keep.java 7 package proguard.annotation;
9 import java.lang.annotation.*;
12 * This annotation specifies not to optimize or obfuscate the annotated class or
KeepApplication.java 7 package proguard.annotation;
9 import java.lang.annotation.*;
12 * This annotation specifies to keep the annotated class as an application,
KeepClassMemberNames.java 7 package proguard.annotation;
9 import java.lang.annotation.*;
12 * This annotation specifies to keep all class members of the annotated class

Completed in 600 milliseconds

1 2 3 4 5 6 7 8 91011>>