HomeSort by relevance Sort by last modified time
    Searched refs:annotation (Results 51 - 75 of 2460) sorted by null

1 23 4 5 6 7 8 91011>>

  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/annotation/
WorkerThread.java 17 package com.android.ddmuilib.annotation;
19 import java.lang.annotation.Target;
20 import java.lang.annotation.ElementType;
21 import java.lang.annotation.Retention;
22 import java.lang.annotation.RetentionPolicy;
25 * Simple utility annotation used only to mark methods that are not executed on the UI thread.
26 * This annotation's sole purpose is to help reading the source code. It has no additional effect.
  /external/proguard/examples/annotations/lib/
annotations.jar 
annotations.pro 26 -keep @proguard.annotation.Keep class *
29 @proguard.annotation.Keep *;
36 -keepnames @proguard.annotation.KeepName class *
39 @proguard.annotation.KeepName *;
50 -keep class * implements @proguard.annotation.KeepImplementations *
51 -keep public class * implements @proguard.annotation.KeepPublicImplementations *
56 -keepclasseswithmembers @proguard.annotation.KeepApplication public class * {
65 -keepclassmembers @proguard.annotation.KeepClassMembers class * {
69 -keepclassmembers @proguard.annotation.KeepPublicClassMembers class * {
73 -keepclassmembers @proguard.annotation.KeepPublicProtectedClassMembers class *
    [all...]
  /libcore/luni/src/main/java/java/lang/
Deprecated.java 19 import java.lang.annotation.Documented;
20 import java.lang.annotation.Retention;
21 import java.lang.annotation.RetentionPolicy;
24 * Annotation type used to mark program elements that should no longer be used
  /external/jsr305/ri/src/main/java/javax/annotation/
Syntax.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;
11 * This annotation a value that is of a particular syntax, such as Java syntax
24 * Value indicating the particular syntax denoted by this annotation.
  /external/jsr305/ri/src/main/java/javax/annotation/meta/
TypeQualifier.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
22 * annotation can also be applied to the corresponding primitive numeric
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/
AnnotationVisitor.java 21 package proguard.classfile.attribute.annotation.visitor;
24 import proguard.classfile.attribute.annotation.Annotation;
28 * <code>Annotation</code> objects. Note that there is only a single
29 * implementation of <code>Annotation</code>, such that this interface
36 public void visitAnnotation(Clazz clazz, Annotation annotation);
37 public void visitAnnotation(Clazz clazz, Field field, Annotation annotation);
38 public void visitAnnotation(Clazz clazz, Method method, Annotation annotation)
    [all...]
  /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;
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/proguard/examples/annotations/src/proguard/annotation/
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
KeepClassMembers.java 7 package proguard.annotation;
9 import java.lang.annotation.*;
12 * This annotation specifies to keep all class members of the annotated class
KeepGettersSetters.java 7 package proguard.annotation;
9 import java.lang.annotation.*;
12 * This annotation specifies to keep all getters and setters of the annotated
KeepImplementations.java 7 package proguard.annotation;
9 import java.lang.annotation.*;
12 * This annotation specifies to keep all implementations or extensions of the
KeepPublicClassMemberNames.java 7 package proguard.annotation;
9 import java.lang.annotation.*;
12 * This annotation specifies to keep all public class members of the annotated
KeepPublicClassMembers.java 7 package proguard.annotation;
9 import java.lang.annotation.*;
12 * This annotation specifies to keep all public class members of the annotated
KeepPublicGettersSetters.java 7 package proguard.annotation;
9 import java.lang.annotation.*;
12 * This annotation specifies to keep all public getters and setters of the
KeepPublicImplementations.java 7 package proguard.annotation;
9 import java.lang.annotation.*;
12 * This annotation specifies to keep all public implementations or extensions
KeepPublicProtectedClassMemberNames.java 7 package proguard.annotation;
9 import java.lang.annotation.*;
12 * This annotation specifies to keep all public or protected class members of
KeepPublicProtectedClassMembers.java 7 package proguard.annotation;
9 import java.lang.annotation.*;
12 * This annotation specifies to keep all public or protected class members of
  /external/guava/src/com/google/common/annotations/
GwtCompatible.java 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 * The presence of this annotation on a type indicates that the type may be
GwtIncompatible.java 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 * The presence of this annotation on a method indicates that the method may
32 * <p>Note that this annotation should only be applied to methods of types which
  /external/guava/src/com/google/common/collect/
package-info.java 187 @javax.annotation.ParametersAreNonnullByDefault

Completed in 787 milliseconds

1 23 4 5 6 7 8 91011>>