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

<<11121314151617181920>>

  /prebuilts/tools/common/m2/repository/com/android/tools/jack/jack-api/0.1/
jack-api-0.1.jar 
  /prebuilts/tools/common/m2/repository/com/android/tools/jack/jack-api/0.9.0/
jack-api-0.9.0.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/annotations/3.0.0/
annotations-3.0.0.jar 
  /external/javassist/src/main/javassist/bytecode/annotation/
AnnotationsWriter.java 16 package javassist.bytecode.annotation;
36 * writer.annotation("Author", 2);
49 * <p>The code snippet above generates the annotation attribute
50 * corresponding to this annotation:
103 * <code>annotation()</code>.
110 * Writes <code>annotation</code>.
114 * @param type the annotation interface name.
116 * in <code>annotation</code>.
118 public void annotation(String type, int numMemberValuePairs) method in class:AnnotationsWriter
121 annotation(pool.addUtf8Info(type), numMemberValuePairs)
133 public void annotation(int typeIndex, int numMemberValuePairs) method in class:AnnotationsWriter
    [all...]
AnnotationMemberValue.java 15 package javassist.bytecode.annotation;
23 * Nested annotation.
29 Annotation value;
32 * Constructs an annotation member. The initial value is not specified.
39 * Constructs an annotation member. The initial value is specified by
42 public AnnotationMemberValue(Annotation a, ConstPool cp) {
63 public Annotation getValue() {
70 public void setValue(Annotation newValue) {
BooleanMemberValue.java 15 package javassist.bytecode.annotation;
ByteMemberValue.java 15 package javassist.bytecode.annotation;
CharMemberValue.java 16 package javassist.bytecode.annotation;
DoubleMemberValue.java 16 package javassist.bytecode.annotation;
FloatMemberValue.java 16 package javassist.bytecode.annotation;
IntegerMemberValue.java 16 package javassist.bytecode.annotation;
LongMemberValue.java 16 package javassist.bytecode.annotation;
ShortMemberValue.java 16 package javassist.bytecode.annotation;
StringMemberValue.java 16 package javassist.bytecode.annotation;
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/annotations/2.0.1/
annotations-2.0.1.jar 
  /dalvik/dexgen/src/com/android/dexgen/rop/annotation/
AnnotationVisibility.java 17 package com.android.dexgen.rop.annotation;
22 * Visibility scope of an annotation.
NameValuePair.java 17 package com.android.dexgen.rop.annotation;
24 * A (name, value) pair. These are used as the contents of an annotation.
  /dalvik/dx/src/com/android/dx/rop/annotation/
AnnotationVisibility.java 17 package com.android.dx.rop.annotation;
22 * Visibility scope of an annotation.
NameValuePair.java 17 package com.android.dx.rop.annotation;
23 * A (name, value) pair. These are used as the contents of an annotation.
  /external/guice/extensions/dagger-adapter/src/com/google/inject/daggeradapter/
DaggerMethodScanner.java 29 import java.lang.annotation.Annotation;
41 @Override public Set<? extends Class<? extends Annotation>> annotationClasses() {
46 Binder binder, Annotation rawAnnotation, Key<T> key, InjectionPoint injectionPoint) {
48 Provides annotation = (Provides) rawAnnotation; local
49 switch (annotation.type()) {
62 binder.addError("Unknown @Provides type " + annotation.type() + ".", providesMethod);
  /external/guice/extensions/multibindings/src/com/google/inject/multibindings/
RealElement.java 22 import java.lang.annotation.Annotation;
62 @Override public Class<? extends Annotation> annotationType() {
87 * Returns the name the binding should use. This is based on the annotation.
88 * If the annotation has an instance and is not a marker annotation,
89 * we ask the annotation for its toString. If it was a marker annotation
90 * or just an annotation type, we use the annotation's name. Otherwise
94 Annotation annotation = key.getAnnotation(); local
    [all...]
  /external/junit/src/main/java/org/junit/internal/builders/
AnnotatedBuilder.java 13 * {@code @RunWith} annotation. All tests within this class will be executed using the runner that was specified within
14 * the annotation.
58 * <li>If there is no RunWith annotation, no runner will be created.</li>
59 * <li>The resolve step is inside-out, e.g. the closest RunWith annotation wins</li>
84 RunWith annotation = currentTestClass.getAnnotation(RunWith.class); local
85 if (annotation != null) {
86 return buildRunner(annotation.value(), testClass);
  /external/junit/src/main/java/org/junit/runners/
Suite.java 3 import java.lang.annotation.ElementType;
4 import java.lang.annotation.Inherited;
5 import java.lang.annotation.Retention;
6 import java.lang.annotation.RetentionPolicy;
7 import java.lang.annotation.Target;
40 * The <code>SuiteClasses</code> annotation specifies the classes to be run when a class
54 SuiteClasses annotation = klass.getAnnotation(SuiteClasses.class); local
55 if (annotation == null) {
56 throw new InitializationError(String.format("class '%s' must have a SuiteClasses annotation", klass.getName()));
58 return annotation.value()
    [all...]
  /external/junit-params/src/main/java/junitparams/internal/annotation/
FrameworkMethodAnnotations.java 1 package junitparams.internal.annotation;
3 import java.lang.annotation.Annotation;
23 public Annotation[] allAnnotations() {
27 public <T extends Annotation> T getAnnotation(Class<T> annotationType) {
31 public boolean hasAnnotation(Class<? extends Annotation> annotation) {
32 return getAnnotation(annotation) != null;
45 for (Annotation annotation : frameworkMethod.getAnnotations())
    [all...]
  /external/junit-params/src/main/java/junitparams/internal/parameters/
ParametersFromCustomProvider.java 6 import junitparams.internal.annotation.CustomParametersDescriptor;
7 import junitparams.internal.annotation.FrameworkMethodAnnotations;
26 provider.initialize(parameters.annotation());

Completed in 256 milliseconds

<<11121314151617181920>>