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

1 2 3 4 5 6 7 8 91011>>

  /cts/tools/dex-tools/src/dex/structure/
DexAnnotatedElement.java 32 Set<DexAnnotation> getAnnotations();
  /cts/tools/signature-tools/src/signature/model/
IAnnotatableElement.java 38 Set<IAnnotation> getAnnotations();
  /frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyTestApp/src/com/android/multidexlegacytestapp/
Test.java 53 clazz.getAnnotations();
56 clazz.getAnnotations();
59 clazz.getAnnotations();
TestApplication.java 36 Annotation[] annot = annotated.getAnnotations();
  /cts/tools/signature-tools/src/signature/model/impl/
SigAnnotatableElement.java 35 public Set<IAnnotation> getAnnotations() {
46 for (IAnnotation annotation : getAnnotations()) {
SigField.java 64 if (getAnnotations() != null && !getAnnotations().isEmpty()) {
  /external/junit/src/org/junit/runners/model/
FrameworkMember.java 10 abstract Annotation[] getAnnotations();
FrameworkField.java 25 public Annotation[] getAnnotations() {
26 return fField.getAnnotations();
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
AnnotationSetSection.java 41 @Nonnull Collection<? extends AnnotationKey> getAnnotations(@Nonnull AnnotationSetKey key);
  /libcore/luni/src/main/java/java/lang/reflect/
AnnotatedElement.java 49 Annotation[] getAnnotations();
  /libcore/benchmarks/src/benchmarks/regression/
AnnotatedElementBenchmark.java 43 type.getAnnotations();
49 field.getAnnotations();
55 method.getAnnotations();
105 HasLargeAnnotation.class.getAnnotations();
111 HasSmallAnnotation.class.getAnnotations();
117 HasMarkerAnnotation.class.getAnnotations();
123 HasNoAnnotations.class.getAnnotations();
129 HasThreeAnnotations.class.getAnnotations();
138 ExtendsHasThreeAnnotations.class.getAnnotations();
144 ExtendsHasThreeAnnotations.class.getAnnotations();
    [all...]
  /cts/tools/signature-tools/src/signature/compare/model/subst/
ParameterProjection.java 37 public Set<IAnnotation> getAnnotations() {
38 return original.getAnnotations();
ExecutableMemberProjection.java 43 public Set<IAnnotation> getAnnotations() {
44 return original.getAnnotations();
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/
MethodParameter.java 67 @Nonnull Set<? extends Annotation> getAnnotations();
Field.java 95 @Nonnull Set<? extends Annotation> getAnnotations();
Method.java 98 @Nonnull Set<? extends Annotation> getAnnotations();
  /dalvik/dx/src/com/android/dx/cf/attrib/
BaseAnnotations.java 69 public final Annotations getAnnotations() {
  /libcore/libart/src/main/java/java/lang/reflect/
AccessibleObject.java 95 @Override public Annotation[] getAnnotations() {
96 // for all but Class, getAnnotations == getDeclaredAnnotations
  /libcore/luni/src/main/java/java/lang/
Package.java 89 for (Annotation annotation : getAnnotations()) {
100 public Annotation[] getAnnotations() {
104 return c.getAnnotations();
112 * inherited, so this is equivalent to {@link #getAnnotations}.
115 return getAnnotations();
  /libcore/luni/src/test/java/libcore/java/lang/
PackageTest.java 30 assertEquals(1, getClass().getPackage().getAnnotations().length);
  /cts/tools/signature-tools/test/signature/converter/
ConvertPackageTest.java 41 assertEquals(1, sigPackage.getAnnotations().size());
42 IAnnotation annotation = sigPackage.getAnnotations().iterator().next();
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/rewriter/
FieldRewriter.java 81 @Nonnull public Set<? extends Annotation> getAnnotations() {
82 return RewriterUtils.rewriteSet(rewriters.getAnnotationRewriter(), field.getAnnotations());
MethodParameterRewriter.java 64 @Override @Nonnull public Set<? extends Annotation> getAnnotations() {
65 return RewriterUtils.rewriteSet(rewriters.getAnnotationRewriter(), methodParameter.getAnnotations());
  /external/junit/src/org/junit/experimental/theories/
ParameterSignature.java 51 public List<Annotation> getAnnotations() {
76 .getAnnotations(), annotationType, depth - 1);
85 for (Annotation each : getAnnotations())
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/inject/
Injector.java 76 for (Annotation annotation : field.getAnnotations()) {

Completed in 630 milliseconds

1 2 3 4 5 6 7 8 91011>>