HomeSort by relevance Sort by last modified time
    Searched refs:getAnnotation (Results 26 - 50 of 217) sorted by null

12 3 4 5 6 7 8 9

  /external/desugar/java/com/google/devtools/common/options/testing/
OptionsTester.java 65 .that(field.getAnnotation(Option.class))
85 Option option = field.getAnnotation(Option.class);
101 Option option = field.getAnnotation(Option.class);
  /external/guice/extensions/persist/src/com/google/inject/persist/jpa/
JpaLocalTxnInterceptor.java 104 transactional = method.getAnnotation(Transactional.class);
107 transactional = targetClass.getAnnotation(Transactional.class);
111 transactional = Internal.class.getAnnotation(Transactional.class);
  /external/smali/util/src/main/java/org/jf/util/jcommander/
ExtendedCommands.java 50 ExtendedParameters anno = command.getClass().getAnnotation(ExtendedParameters.class);
118 ExtendedParameter extendedParameter = field.getAnnotation(ExtendedParameter.class);
144 Parameters parameters = jc.getObjects().get(0).getClass().getAnnotation(Parameters.class);
Command.java 62 return parentJc.getCommands().get(this.getClass().getAnnotation(ExtendedParameters.class).commandName());
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstAnnotation.java 93 public Annotation getAnnotation() {
  /dalvik/dx/src/com/android/dx/rop/cst/
CstAnnotation.java 94 public Annotation getAnnotation() {
  /external/guice/core/test/com/google/inject/internal/
RealElementTest.java 30 this.systemElement = Holder.class.getAnnotation(Element.class);
  /external/junit-params/src/main/java/junitparams/converters/
ParamAnnotation.java 19 return annotation.annotationType().getAnnotation(Param.class);
  /external/objenesis/tck/src/main/java/org/objenesis/tck/search/
SystemOutListener.java 37 Instantiator instantiatorAnn = c.getAnnotation(Instantiator.class);
  /external/testng/src/test/java/test/methodinterceptors/
FastTestsFirstInterceptor.java 20 Test test = m.getMethod().getMethod().getAnnotation(Test.class);
  /external/testng/src/test/java/test/tmp/
TimeBombTest.java 14 IgnoreUntil t = m.getAnnotation(IgnoreUntil.class);
  /external/vogar/src/vogar/target/junit/
MappingAnnotatedBuilder.java 42 RunWith runWith = testClass.getAnnotation(RunWith.class);
  /external/junit/src/main/java/org/junit/experimental/categories/
Categories.java 282 Category annotation= description.getAnnotation(Category.class);
322 IncludeCategory annotation= klass.getAnnotation(IncludeCategory.class);
327 IncludeCategory annotation= klass.getAnnotation(IncludeCategory.class);
332 ExcludeCategory annotation= klass.getAnnotation(ExcludeCategory.class);
337 ExcludeCategory annotation= klass.getAnnotation(ExcludeCategory.class);
352 if (each.getAnnotation(Category.class) != null) {
  /external/guice/core/src/com/google/inject/
Key.java 150 public final Annotation getAnnotation() {
151 return annotationStrategy.getAnnotation();
159 Annotation annotation = annotationStrategy.getAnnotation();
304 Annotation getAnnotation();
368 public Annotation getAnnotation() {
403 public Annotation getAnnotation() {
456 public Annotation getAnnotation() {
  /external/desugar/java/com/google/devtools/common/options/processor/
OptionProcessor.java 175 Option annotation = optionField.getAnnotation(Option.class);
321 Option annotation = optionField.getAnnotation(Option.class);
336 ProcessorUtils.getAnnotation(elementUtils, typeUtils, optionField, Option.class);
362 Option annotation = optionField.getAnnotation(Option.class);
395 Option annotation = optionField.getAnnotation(Option.class);
417 Option annotation = optionField.getAnnotation(Option.class);
428 Option annotation = optionField.getAnnotation(Option.class);
454 Option annotation = optionField.getAnnotation(Option.class);
459 ProcessorUtils.getAnnotation(elementUtils, typeUtils, optionField, Option.class);
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/android/
AccessibilityUtil.java 60 AccessibilityChecks classChecksAnnotation = getAnnotation();
76 return checkView(view, getAnnotation());
225 private static AccessibilityChecks getAnnotation() {
236 classChecksAnnotation = method.getAnnotation(AccessibilityChecks.class);
238 classChecksAnnotation = clazz.getAnnotation(AccessibilityChecks.class);
  /external/testng/src/main/java/org/testng/internal/annotations/
JDK15AnnotationFinder.java 87 return cls.getAnnotation(a);
91 A result = cls.getAnnotation(a);
110 Annotation annotation = m.getAnnotation(a);
129 Annotation annotation = m.getAnnotation(a);
131 annotation = testClass.getAnnotation(a);
203 Annotation annotation = cons.getAnnotation(a);
  /external/guava/guava/src/com/google/common/reflect/
Element.java 56 @Override public final <A extends Annotation> A getAnnotation(Class<A> annotationClass) {
57 return accessibleObject.getAnnotation(annotationClass);
Parameter.java 66 return getAnnotation(annotationType) != null;
71 public <A extends Annotation> A getAnnotation(Class<A> annotationType) {
  /external/guice/core/src/com/google/inject/internal/
ConstantBindingBuilderImpl.java 123 if (base.getKey().getAnnotation() != null) {
124 key = Key.get(typeAsClassT, base.getKey().getAnnotation());
  /external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
Parameter.java 119 return key.getAnnotation() == null
121 : Key.get(key.getTypeLiteral(), key.getAnnotation().annotationType());
  /external/junit/src/main/java/org/junit/runners/model/
FrameworkMethod.java 194 public <T extends Annotation> T getAnnotation(Class<T> annotationType) {
195 return method.getAnnotation(annotationType);
  /external/libchrome/base/test/android/junit/src/org/chromium/base/test/util/
AnnotationProcessingUtilsTest.java 44 retrievedAnnotation = AnnotationProcessingUtils.getAnnotation(
55 retrievedAnnotation = AnnotationProcessingUtils.getAnnotation(
65 retrievedAnnotation = AnnotationProcessingUtils.getAnnotation(
75 retrievedAnnotation = AnnotationProcessingUtils.getAnnotation(
86 retrievedAnnotation = AnnotationProcessingUtils.getAnnotation(
98 retrievedAnnotation = AnnotationProcessingUtils.getAnnotation(
109 retrievedAnnotation = AnnotationProcessingUtils.getAnnotation(
119 retrievedAnnotation = AnnotationProcessingUtils.getAnnotation(
  /external/mockito/src/test/java/org/mockito/internal/creation/bytebuddy/
SubclassByteBuddyMockMakerTest.java 63 assertThat(proxy.getClass().getAnnotation(SampleAnnotation.class).value()).isEqualTo("foo");
66 assertThat(proxy.getClass().getMethod("sampleMethod").getAnnotation(SampleAnnotation.class).value()).isEqualTo("bar");
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/
FacadeManager.java 64 String replacedBy = method.getAnnotation(RpcDeprecated.class).value();
68 int requiredSdkLevel = method.getAnnotation(RpcMinSdk.class).value();

Completed in 1335 milliseconds

12 3 4 5 6 7 8 9