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

<<11121314151617181920>>

  /external/jsr305/ri/src/main/java/javax/annotation/
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;
  /external/jsr305/ri/src/main/java/javax/annotation/concurrent/
GuardedBy.java 1 package javax.annotation.concurrent;
3 import java.lang.annotation.ElementType;
4 import java.lang.annotation.Retention;
5 import java.lang.annotation.RetentionPolicy;
6 import java.lang.annotation.Target;
18 * The field or method to which this annotation is applied can only be accessed
  /external/jsr305/ri/src/main/java/javax/annotation/meta/
TypeQualifierValidator.java 1 package javax.annotation.meta;
3 import java.lang.annotation.Annotation;
5 import javax.annotation.Nonnull;
7 public interface TypeQualifierValidator<A extends Annotation> {
12 * @param annotation
20 When forConstantValue(@Nonnull A annotation, Object value);
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/annotation/
DisableStrictI18n.java 1 package com.xtremelabs.robolectric.annotation;
9 @java.lang.annotation.Documented
10 @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME)
11 @java.lang.annotation.Target({java.lang.annotation.ElementType.TYPE, java.lang.annotation.ElementType.METHOD})
EnableStrictI18n.java 1 package com.xtremelabs.robolectric.annotation;
8 @java.lang.annotation.Documented
9 @java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME)
10 @java.lang.annotation.Target({java.lang.annotation.ElementType.TYPE,java.lang.annotation.ElementType.METHOD})
  /external/robolectric-shadows/processor/src/main/java/org/robolectric/annotation/processing/generator/
package-info.java 4 package org.robolectric.annotation.processing.generator
  /external/robolectric-shadows/processor/src/main/java/org/robolectric/annotation/processing/validator/
package-info.java 4 package org.robolectric.annotation.processing.validator
  /external/robolectric-shadows/shadowapi/src/main/java/org/robolectric/annotation/internal/
DoNotInstrument.java 1 package org.robolectric.annotation.internal;
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;
Instrument.java 1 package org.robolectric.annotation.internal;
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;
  /external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/op/annotation/
Operator.java 16 package org.tensorflow.op.annotation;
18 import java.lang.annotation.Documented;
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 * Annotation used by classes to make TensorFlow operations conveniently accessible via {@code
28 * <p>An annotation processor (TODO: not yet implemented) builds the {@code Ops} class by
62 * <p>By default, an annotation processor will create convenience methods directly in the {@code
  /frameworks/base/test-base/src/android/test/suitebuilder/annotation/
LargeTest.java 17 package android.test.suitebuilder.annotation;
19 import java.lang.annotation.ElementType;
20 import java.lang.annotation.Retention;
21 import java.lang.annotation.RetentionPolicy;
22 import java.lang.annotation.Target;
MediumTest.java 17 package android.test.suitebuilder.annotation;
19 import java.lang.annotation.ElementType;
20 import java.lang.annotation.Retention;
21 import java.lang.annotation.RetentionPolicy;
22 import java.lang.annotation.Target;
SmallTest.java 17 package android.test.suitebuilder.annotation;
19 import java.lang.annotation.ElementType;
20 import java.lang.annotation.Retention;
21 import java.lang.annotation.RetentionPolicy;
22 import java.lang.annotation.Target;
Smoke.java 17 package android.test.suitebuilder.annotation;
19 import java.lang.annotation.ElementType;
20 import java.lang.annotation.Retention;
21 import java.lang.annotation.RetentionPolicy;
22 import java.lang.annotation.Target;
27 * will run all tests with this annotation.
Suppress.java 17 package android.test.suitebuilder.annotation;
19 import java.lang.annotation.Retention;
20 import java.lang.annotation.RetentionPolicy;
21 import java.lang.annotation.Target;
22 import java.lang.annotation.ElementType;
25 * Use this annotation on test classes or test methods that should not be included in a test
26 * suite. If the annotation appears on the class then no tests in that class will be included. If
27 * the annotation appears only on a test method then only that method will be excluded.
  /frameworks/support/annotations/src/main/java/androidx/annotation/
RequiresFeature.java 16 package androidx.annotation;
18 import static java.lang.annotation.ElementType.CONSTRUCTOR;
19 import static java.lang.annotation.ElementType.FIELD;
20 import static java.lang.annotation.ElementType.METHOD;
21 import static java.lang.annotation.ElementType.TYPE;
22 import static java.lang.annotation.RetentionPolicy.SOURCE;
24 import java.lang.annotation.Retention;
25 import java.lang.annotation.Target;
30 * Android Studio can check that calls marked with this annotation is surrounded by has-feature
  /libcore/ojluni/src/main/java/java/lang/annotation/
Repeatable.java 26 package java.lang.annotation;
29 * The annotation type {@code java.lang.annotation.Repeatable} is
30 * used to indicate that the annotation type whose declaration it
32 * {@code @Repeatable} indicates the <em>containing annotation
33 * type</em> for the repeatable annotation type.
36 * @jls 9.6 Annotation Types
44 * Indicates the <em>containing annotation type</em> for the
45 * repeatable annotation type.
46 * @return the containing annotation typ
    [all...]
Retention.java 26 package java.lang.annotation;
30 * be retained. If no Retention annotation is present on
31 * an annotation type declaration, the retention policy defaults to
34 * <p>A Retention meta-annotation has effect only if the
35 * meta-annotated type is used directly for annotation. It has no
37 * another annotation type.
Target.java 26 package java.lang.annotation;
29 * Indicates the contexts in which an annotation type is applicable. The
30 * declaration contexts and type contexts in which an annotation type may be
32 * constants of {@link ElementType java.lang.annotation.ElementType}.
34 * <p>If an {@code @Target} meta-annotation is not present on an annotation type
35 * {@code T} , then an annotation of type {@code T} may be written as a
38 * <p>If an {@code @Target} meta-annotation is present, the compiler will enforce
42 * <p>For example, this {@code @Target} meta-annotation indicates that the
43 * declared type is itself a meta-annotation type. It can only be used o
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/annotation/
VisibleForAnimation.java 16 package com.android.messaging.annotation;
19 * An annotation for class members that are made visible for Android's ObjectAnimator to work
  /packages/inputmethods/LatinIME/tools/dicttool/compat/android/test/suitebuilder/annotation/
LargeTest.java 17 package android.test.suitebuilder.annotation;
20 * This is a compatibility class that aims at emulating the LargeTest annotation from the
  /prebuilts/maven_repo/android/com/android/support/support-annotations/19.1.0/
support-annotations-19.1.0.jar 
  /prebuilts/maven_repo/android/com/android/support/support-annotations/20.0.0/
support-annotations-20.0.0.jar 
  /prebuilts/maven_repo/android/com/android/support/support-annotations/21.0.0/
support-annotations-21.0.0.jar 
  /prebuilts/maven_repo/android/com/android/support/support-annotations/21.0.2/
support-annotations-21.0.2.jar 

Completed in 822 milliseconds

<<11121314151617181920>>