HomeSort by relevance Sort by last modified time
    Searched refs:getAnnotation (Results 1 - 25 of 99) sorted by null

1 2 3 4

  /cts/tools/dex-tools/src/dex/structure/
DexAnnotationAttribute.java 38 public DexAnnotation getAnnotation();
  /external/junit/src/org/junit/internal/builders/
IgnoredBuilder.java 13 if (testClass.getAnnotation(Ignore.class) != null)
AnnotatedBuilder.java 22 RunWith annotation= testClass.getAnnotation(RunWith.class);
  /libcore/luni/src/main/java/java/lang/reflect/
AnnotatedElement.java 40 <T extends Annotation> T getAnnotation(Class<T> annotationType);
  /frameworks/base/test-runner/src/android/test/suitebuilder/annotation/
HasClassAnnotation.java 39 return testMethod.getEnclosingClass().getAnnotation(annotationClass) != null;
HasMethodAnnotation.java 39 return testMethod.getAnnotation(annotationClass) != null;
  /external/junit/src/org/junit/internal/runners/
TestMethod.java 30 return fMethod.getAnnotation(Ignore.class) != null;
34 Test annotation= fMethod.getAnnotation(Test.class);
42 Test annotation= fMethod.getAnnotation(Test.class);
  /external/guava/guava/src/com/google/common/eventbus/
AnnotatedHandlerFinder.java 44 Subscribe annotation = method.getAnnotation(Subscribe.class);
95 return method.getAnnotation(AllowConcurrentEvents.class) != null;
  /cts/tools/signature-tools/src/signature/converter/dex/
DexUtil.java 135 getAnnotation(clazz, INNER_CLASS_ANNOTATION),
249 return getAnnotation(annotatedElement, THROWS_ANNOTATION) != null;
264 DexAnnotation annotation = getAnnotation(annotatedElement,
305 return getAnnotation(annotatedElement, SIGNATURE_ANNOTATION) != null;
320 DexAnnotation annotation = getAnnotation(annotatedElement,
342 return getAnnotation(
355 return getAnnotation(dexClass, ANNOTATION_DEFAULT_ANNOTATION);
368 public static DexAnnotation getAnnotation(DexAnnotatedElement element,
468 return getAnnotation(clazz, INNER_CLASS_ANNOTATION) != null;
480 return getAnnotation(clazz, ENCLOSING_CLASS_ANNOTATION) != null
    [all...]
  /cts/tools/dex-tools/src/dex/reader/
DexAnnotationAttributeImpl.java 64 public DexAnnotation getAnnotation() {
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstAnnotation.java 93 public Annotation getAnnotation() {
  /dalvik/dx/src/com/android/dx/rop/cst/
CstAnnotation.java 93 public Annotation getAnnotation() {
  /dalvik/tests/004-annotations/src/android/test/anno/
TestAnnotations.java 66 aff = (AnnoFancyField) f.getAnnotation(AnnoFancyField.class);
130 property = meth.getAnnotation(ExportedProperty.class);
171 anno = SimplyNoted.class.getAnnotation(AnnoSimpleType.class);
174 anno = SubNoted.class.getAnnotation(AnnoSimpleType.class);
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
CstAnnotation.java 93 public Annotation getAnnotation() {
  /external/junit/src/org/junit/experimental/categories/
Categories.java 140 Category annotation= description.getAnnotation(Category.class);
160 IncludeCategory annotation= klass.getAnnotation(IncludeCategory.class);
165 ExcludeCategory annotation= klass.getAnnotation(ExcludeCategory.class);
178 if (each.getAnnotation(Category.class) != null)
  /external/junit/src/org/junit/experimental/theories/suppliers/
TestedOnSupplier.java 16 TestedOn testedOn = sig.getAnnotation(TestedOn.class);
  /frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/
TestDelegates.java 92 if (originalMethod.getAnnotation(LayoutlibDelegate.class) == null) {
130 delegateMethod.getAnnotation(LayoutlibDelegate.class));
157 if (delegateMethod.getAnnotation(LayoutlibDelegate.class) == null) {
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
AnnotationsTest.java 97 // getAnnotations() should be consistent with isAnnotationPresent() and getAnnotation()
109 element.getAnnotation(null);
126 assertNotNull(element.getAnnotation(annotation));
129 assertNull(element.getAnnotation(annotation));
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
AccessibleObjectTest.java 139 ao.getAnnotation(null);
147 InheritedRuntime ir = ao.getAnnotation(InheritedRuntime.class);
151 AnnotationRuntime0 rt0 = ao.getAnnotation(AnnotationRuntime0.class);
  /external/junit/src/org/junit/experimental/theories/
ParameterSignature.java 60 return getAnnotation(type) != null;
84 public <T extends Annotation> T getAnnotation(Class<T> annotationType) {
  /external/junit/src/org/junit/runners/model/
FrameworkMethod.java 153 public <T extends Annotation> T getAnnotation(Class<T> annotationType) {
154 return fMethod.getAnnotation(annotationType);
  /frameworks/base/test-runner/src/android/test/suitebuilder/
TestMethod.java 58 public <T extends Annotation> T getAnnotation(Class<T> annotationClass) {
60 return getEnclosingClass().getMethod(getName()).getAnnotation(annotationClass);
  /libcore/luni/src/main/java/java/lang/
Package.java 82 * @see java.lang.reflect.AnnotatedElement#getAnnotation(java.lang.Class)
85 public <A extends Annotation> A getAnnotation(Class<A> annotationType) {
118 return getAnnotation(annotationType) != null;
  /cts/tools/utils/
CollectAllTests.java 319 return getAnnotation(testClass, testName, KNOWN_FAILURE);
324 return getAnnotation(testClass, testName, KNOWN_FAILURE) != null;
329 return getAnnotation(testClass, testName, BROKEN_TEST) != null;
334 return getAnnotation(testClass, testName, SUPPRESSED_TEST) != null;
339 return getAnnotation(testClass, testName, SIDE_EFFECT) != null;
342 private static String getAnnotation(final Class<? extends TestCase> testClass,
  /external/javassist/src/main/javassist/
CtMember.java 33 public Object getAnnotation(Class clz)
227 public abstract Object getAnnotation(Class clz) throws ClassNotFoundException;

Completed in 521 milliseconds

1 2 3 4