Searched refs:annotation (Results 126 - 150 of 1769) sorted by relevance

1234567891011>>

/external/libmojo/base/android/java/src/org/chromium/base/annotations/
H A DNativeCall.java7 import java.lang.annotation.ElementType;
8 import java.lang.annotation.Retention;
9 import java.lang.annotation.RetentionPolicy;
10 import java.lang.annotation.Target;
H A DNativeClassQualifiedName.java7 import java.lang.annotation.ElementType;
8 import java.lang.annotation.Retention;
9 import java.lang.annotation.RetentionPolicy;
10 import java.lang.annotation.Target;
/external/owasp/sanitizer/src/main/org/owasp/html/
H A Dpackage-info.java36 @javax.annotation.ParametersAreNonnullByDefault
/external/proguard/examples/annotations/examples/
H A DApplet.java1 import proguard.annotation.*;
11 * The annotation will preserve the class and its essential methods,
/external/testng/src/main/java/org/testng/annotations/
H A DDataProvider.java3 import static java.lang.annotation.ElementType.METHOD;
5 import java.lang.annotation.Retention;
6 import java.lang.annotation.Target;
14 * needs to use a dataProvider name equals to the name of this annotation.
18 @Retention(java.lang.annotation.RetentionPolicy.RUNTIME)
H A DExpectedExceptions.java3 import java.lang.annotation.Retention;
4 import java.lang.annotation.Target;
14 @Retention(java.lang.annotation.RetentionPolicy.RUNTIME)
15 @Target(java.lang.annotation.ElementType.METHOD)
H A DNoInjection.java3 import static java.lang.annotation.ElementType.PARAMETER;
5 import java.lang.annotation.Retention;
6 import java.lang.annotation.Target;
13 @Retention(java.lang.annotation.RetentionPolicy.RUNTIME)
H A DObjectFactory.java3 import java.lang.annotation.Retention;
4 import java.lang.annotation.Target;
8 * The test classes can only contain one method marked with this annotation,
14 @Retention(java.lang.annotation.RetentionPolicy.RUNTIME)
15 @Target(java.lang.annotation.ElementType.METHOD)
H A DTestInstance.java3 import static java.lang.annotation.ElementType.PARAMETER;
5 import java.lang.annotation.Retention;
6 import java.lang.annotation.Target;
9 * If this annotation is used on a parameter of a data provider, that parameter is the instance
12 * This annotation is ignored everywhere else.
16 @Retention(java.lang.annotation.RetentionPolicy.RUNTIME)
/external/testng/src/main/java/org/testng/internal/
H A DDataProviderHolder.java13 IDataProviderAnnotation annotation; field in class:DataProviderHolder
15 public DataProviderHolder(IDataProviderAnnotation annotation, Method method, Object instance) { argument
16 this.annotation = annotation;
/external/testng/src/main/java/org/testng/xml/dom/
H A DOnElement.java3 import static java.lang.annotation.ElementType.METHOD;
5 import java.lang.annotation.Retention;
6 import java.lang.annotation.Target;
8 @Retention(java.lang.annotation.RetentionPolicy.RUNTIME)
H A DOnElementList.java3 import static java.lang.annotation.ElementType.METHOD;
5 import java.lang.annotation.Retention;
6 import java.lang.annotation.Target;
8 @Retention(java.lang.annotation.RetentionPolicy.RUNTIME)
H A DParentSetter.java3 import static java.lang.annotation.ElementType.METHOD;
5 import java.lang.annotation.Retention;
6 import java.lang.annotation.Target;
8 @Retention(java.lang.annotation.RetentionPolicy.RUNTIME)
H A DTag.java3 import static java.lang.annotation.ElementType.METHOD;
5 import java.lang.annotation.Retention;
6 import java.lang.annotation.Target;
8 @Retention(java.lang.annotation.RetentionPolicy.RUNTIME)
H A DTagContent.java3 import static java.lang.annotation.ElementType.METHOD;
5 import java.lang.annotation.Retention;
6 import java.lang.annotation.Target;
8 @Retention(java.lang.annotation.RetentionPolicy.RUNTIME)
/external/testng/src/test/java/test/tmp/verify/
H A DVerify.java3 import java.lang.annotation.Retention;
4 import java.lang.annotation.Target;
6 @Retention(java.lang.annotation.RetentionPolicy.RUNTIME)
7 @Target(java.lang.annotation.ElementType.METHOD)
/external/vogar/src/vogar/
H A DOption.java19 import java.lang.annotation.ElementType;
20 import java.lang.annotation.Retention;
21 import java.lang.annotation.RetentionPolicy;
22 import java.lang.annotation.Target;
/external/vogar/test/vogar/android/
H A DVogarArgs.java19 import java.lang.annotation.ElementType;
20 import java.lang.annotation.Retention;
21 import java.lang.annotation.RetentionPolicy;
22 import java.lang.annotation.Target;
/external/guice/core/src/com/google/inject/
H A DInject.java19 import static java.lang.annotation.ElementType.CONSTRUCTOR;
20 import static java.lang.annotation.ElementType.FIELD;
21 import static java.lang.annotation.ElementType.METHOD;
22 import static java.lang.annotation.RetentionPolicy.RUNTIME;
24 import java.lang.annotation.Documented;
25 import java.lang.annotation.Retention;
26 import java.lang.annotation.Target;
/external/jsr305/ri/src/main/java/javax/annotation/
H A DCheckReturnValue.java1 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;
H A DNonnull.java1 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.TypeQualifierValidator;
9 import javax.annotation.meta.When;
H A DMatchesPattern.java1 package javax.annotation;
3 import java.lang.annotation.Documented;
4 import java.lang.annotation.Retention;
5 import java.lang.annotation.RetentionPolicy;
8 import javax.annotation.meta.TypeQualifier;
9 import javax.annotation.meta.TypeQualifierValidator;
10 import javax.annotation.meta.When;
22 public When forConstantValue(MatchesPattern annotation, Object value) { argument
23 Pattern p = Pattern.compile(annotation.value(), annotation
[all...]
/external/jsr330/src/javax/inject/
H A DInject.java19 import java.lang.annotation.Target;
20 import java.lang.annotation.Retention;
21 import java.lang.annotation.Documented;
22 import static java.lang.annotation.RetentionPolicy.RUNTIME;
23 import static java.lang.annotation.ElementType.METHOD;
24 import static java.lang.annotation.ElementType.CONSTRUCTOR;
25 import static java.lang.annotation.ElementType.FIELD;
104 * request per instance. A method with <i>no</i> {@code @Inject} annotation
/external/proguard/src/proguard/classfile/attribute/annotation/visitor/
H A DAnnotationVisitor.java21 package proguard.classfile.attribute.annotation.visitor;
25 import proguard.classfile.attribute.annotation.Annotation;
37 public void visitAnnotation(Clazz clazz, Annotation annotation); argument
38 public void visitAnnotation(Clazz clazz, Field field, Annotation annotation); argument
39 public void visitAnnotation(Clazz clazz, Method method, Annotation annotation); argument
40 public void visitAnnotation(Clazz clazz, Method method, int parameterIndex, Annotation annotation); argument
41 public void visitAnnotation(Clazz clazz, Method method, CodeAttribute codeAttribute, Annotation annotation); argument
H A DElementValueVisitor.java21 package proguard.classfile.attribute.annotation.visitor;
24 import proguard.classfile.attribute.annotation.*;
34 public void visitConstantElementValue( Clazz clazz, Annotation annotation, ConstantElementValue constantElementValue); argument
35 public void visitEnumConstantElementValue(Clazz clazz, Annotation annotation, EnumConstantElementValue enumConstantElementValue); argument
36 public void visitClassElementValue( Clazz clazz, Annotation annotation, ClassElementValue classElementValue); argument
37 public void visitAnnotationElementValue( Clazz clazz, Annotation annotation, AnnotationElementValue annotationElementValue); argument
38 public void visitArrayElementValue( Clazz clazz, Annotation annotation, ArrayElementValue arrayElementValue); argument
40 // public void visitConstantElementValue( Clazz clazz, Field field, Annotation annotation, ConstantElementValue constantElementValue);
41 // public void visitEnumConstantElementValue(Clazz clazz, Field field, Annotation annotation, EnumConstantElementValue enumConstantElementValue);
42 // public void visitClassElementValue( Clazz clazz, Field field, Annotation annotation, ClassElementValu
[all...]

Completed in 885 milliseconds

1234567891011>>