Home
last modified time | relevance | path

Searched defs:annotationType (Results 1 – 25 of 124) sorted by relevance

12345

/external/guice/core/src/com/google/inject/internal/
DAnnotations.java57 public static boolean isMarker(Class<? extends Annotation> annotationType) { in isMarker()
61 public static boolean isAllDefaultMethods(Class<? extends Annotation> annotationType) { in isAllDefaultMethods()
87 public static <T extends Annotation> T generateAnnotation(Class<T> annotationType) { in generateAnnotation()
89 isAllDefaultMethods(annotationType), "%s is not all default methods", annotationType); in generateAnnotation() local
93 private static <T extends Annotation> T generateAnnotationImpl(final Class<T> annotationType) { in generateAnnotationImpl()
/external/auto/common/src/main/java/com/google/auto/common/
DSimpleAnnotationMirror.java46 private final TypeElement annotationType; field in SimpleAnnotationMirror
51 TypeElement annotationType, Map<String, ? extends AnnotationValue> namedValues) { in SimpleAnnotationMirror()
55 annotationType); in SimpleAnnotationMirror() local
73 annotationType, in SimpleAnnotationMirror() local
89 public static AnnotationMirror of(TypeElement annotationType) { in of()
99 TypeElement annotationType, Map<String, ? extends AnnotationValue> namedValues) { in of()
/external/guava/android/guava/src/com/google/common/reflect/
DParameter.java73 public boolean isAnnotationPresent(Class<? extends Annotation> annotationType) { in isAnnotationPresent()
79 public <A extends Annotation> A getAnnotation(Class<A> annotationType) { in getAnnotation()
98 public <A extends Annotation> A[] getAnnotationsByType(Class<A> annotationType) { in getAnnotationsByType()
113 public <A extends Annotation> A getDeclaredAnnotation(Class<A> annotationType) { in getDeclaredAnnotation()
122 public <A extends Annotation> A[] getDeclaredAnnotationsByType(Class<A> annotationType) { in getDeclaredAnnotationsByType()
/external/guava/guava/src/com/google/common/reflect/
DParameter.java75 public boolean isAnnotationPresent(Class<? extends Annotation> annotationType) { in isAnnotationPresent()
81 public <A extends Annotation> A getAnnotation(Class<A> annotationType) { in getAnnotation()
100 public <A extends Annotation> A[] getAnnotationsByType(Class<A> annotationType) { in getAnnotationsByType()
115 public <A extends Annotation> A getDeclaredAnnotation(Class<A> annotationType) { in getDeclaredAnnotation()
124 public <A extends Annotation> A[] getDeclaredAnnotationsByType(Class<A> annotationType) { in getDeclaredAnnotationsByType()
/external/guice/core/src/com/google/inject/
DKey.java72 protected Key(Class<? extends Annotation> annotationType) { in Key()
218 public static <T> Key<T> get(Class<T> type, Class<? extends Annotation> annotationType) { in get()
233 public static Key<?> get(Type type, Class<? extends Annotation> annotationType) { in get()
249 TypeLiteral<T> typeLiteral, Class<? extends Annotation> annotationType) { in get()
316 Class<? extends Annotation> annotationType = annotation.annotationType(); in strategyFor() local
328 static AnnotationStrategy strategyFor(Class<? extends Annotation> annotationType) { in strategyFor()
340 private static void ensureRetainedAtRuntime(Class<? extends Annotation> annotationType) { in ensureRetainedAtRuntime()
347 private static void ensureIsBindingAnnotation(Class<? extends Annotation> annotationType) { in ensureIsBindingAnnotation()
435 final Class<? extends Annotation> annotationType; field in Key.AnnotationTypeStrategy
440 AnnotationTypeStrategy(Class<? extends Annotation> annotationType, Annotation annotation) { in AnnotationTypeStrategy()
/external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
DFactoryModuleBuilder.java263 Class<T> source, Class<? extends Annotation> annotationType, Class<? extends T> target) { in implement()
270 Class<? extends Annotation> annotationType, in implement()
278 Class<? extends Annotation> annotationType, in implement()
286 Class<? extends Annotation> annotationType, in implement()
/external/guice/core/src/com/google/inject/spi/
DScopeBinding.java39 private final Class<? extends Annotation> annotationType; field in ScopeBinding
42 ScopeBinding(Object source, Class<? extends Annotation> annotationType, Scope scope) { in ScopeBinding()
/external/TestParameterInjector/junit4/src/main/java/com/google/testing/junit/testparameterinjector/
DTestParametersValuesProvider.java85 public <A extends Annotation> A getOtherAnnotation(Class<A> annotationType) { in getOtherAnnotation()
116 public <A extends Annotation> ImmutableList<A> getOtherAnnotations(Class<A> annotationType) { in getOtherAnnotations()
DTestParameterValuesProvider.java96 public <A extends Annotation> A getOtherAnnotation(Class<A> annotationType) { in getOtherAnnotation()
129 public <A extends Annotation> ImmutableList<A> getOtherAnnotations(Class<A> annotationType) { in getOtherAnnotations()
DTestParameterAnnotation.java194 Class<? extends Annotation> annotationType, Optional<Class<?>> parameterClass) { in getValueType()
209 Annotation annotation, Class<? extends Annotation> annotationType) { in getParametersAnnotationValues()
/external/TestParameterInjector/junit5/src/main/java/com/google/testing/junit/testparameterinjector/junit5/
DTestParametersValuesProvider.java85 public <A extends Annotation> A getOtherAnnotation(Class<A> annotationType) { in getOtherAnnotation()
116 public <A extends Annotation> ImmutableList<A> getOtherAnnotations(Class<A> annotationType) { in getOtherAnnotations()
DTestParameterValuesProvider.java96 public <A extends Annotation> A getOtherAnnotation(Class<A> annotationType) { in getOtherAnnotation()
129 public <A extends Annotation> ImmutableList<A> getOtherAnnotations(Class<A> annotationType) { in getOtherAnnotations()
DTestParameterAnnotation.java194 Class<? extends Annotation> annotationType, Optional<Class<?>> parameterClass) { in getValueType()
209 Annotation annotation, Class<? extends Annotation> annotationType) { in getParametersAnnotationValues()
DTestParameterValues.java26 Optional<Object> getValue(Class<? extends Annotation> annotationType); in getValue()
/external/dagger2/java/dagger/internal/codegen/binding/
DAnnotationExpression.java81 public static XClassName getAnnotationCreatorClassName(XTypeElement annotationType) { in getAnnotationCreatorClassName()
88 public static String createMethodName(XTypeElement annotationType) { in createMethodName()
/external/doclava/doclet_adapter/src/main/java/com/google/doclava/javadoc/
DAnnotationDescImpl.java39 private final AnnotationTypeDocImpl annotationType; field in AnnotationDescImpl
58 public AnnotationTypeDoc annotationType() { in annotationType() method in AnnotationDescImpl
/external/junit/src/main/java/org/junit/experimental/theories/
DParameterSignature.java102 public <T extends Annotation> T findDeepAnnotation(Class<T> annotationType) { in findDeepAnnotation()
108 Annotation[] annotations, Class<T> annotationType, int depth) { in findDeepAnnotation()
126 public <T extends Annotation> T getAnnotation(Class<T> annotationType) { in getAnnotation()
/external/turbine/java/com/google/turbine/processing/
DTurbineAnnotationProxy.java45 ModelFactory factory, Class<A> annotationType, AnnoInfo anno) { in create()
60 private final Class<?> annotationType; field in TurbineAnnotationProxy
64 ModelFactory factory, ClassLoader loader, Class<?> annotationType, AnnoInfo anno) { in TurbineAnnotationProxy()
/external/testng/src/main/java/org/testng/xml/
DSuiteGenerator.java24 Map<String, String> parameters, String annotationType, int logLevel) { in createSuite()
60 Map<String, String> parameters, String annotationType, int logLevel) { in createCustomizedSuite() argument
DLaunchSuite.java127 final String annotationType) in CustomizedSuite()
247 final String annotationType, in MethodsSuite()
301 final String annotationType, in ClassesAndMethodsSuite()
378 final String annotationType, in ClassListSuite()
/external/dagger2/java/dagger/internal/codegen/writing/
DAnnotationCreatorGenerator.java93 public XElement originatingElement(XTypeElement annotationType) { in originatingElement()
98 public ImmutableList<TypeSpec.Builder> topLevelTypes(XTypeElement annotationType) { in topLevelTypes()
/external/guice/core/src/com/google/inject/multibindings/
DMultibinder.java125 Binder binder, TypeLiteral<T> type, Class<? extends Annotation> annotationType) { in newSetBinder()
144 Binder binder, Class<T> type, Class<? extends Annotation> annotationType) { in newSetBinder()
DMapBinder.java142 Class<? extends Annotation> annotationType) { in newMapBinder()
155 Class<? extends Annotation> annotationType) { in newMapBinder()
/external/TestParameterInjector/src/main/java/com/google/testing/junit/testparameterinjector/
DTestParameterAnnotation.java216 Class<? extends Annotation> annotationType, Optional<Class<?>> parameterClass) { in getValueType()
231 Annotation annotation, Class<? extends Annotation> annotationType) { in getParametersAnnotationValues()
DTestParameterAnnotationMethodProcessor.java122 Class<? extends Annotation> annotationType = annotationTypeOrigin().annotationType(); in toTestNameString() local
188 TestInfo testInfo, Class<? extends Annotation> annotationType) { in getTestParameterValue()
211 private static Predicate<TestParameterValue> matches(Class<? extends Annotation> annotationType) { in matches()
233 abstract Class<? extends Annotation> annotationType(); in annotationType() method in TestParameterAnnotationMethodProcessor.AnnotationTypeOrigin
239 Class<? extends Annotation> annotationType, Origin origin) { in create()

12345