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

1 2 3 4

  /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();
  /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();
  /libcore/luni/src/main/java/java/lang/reflect/
AnnotatedElement.java 49 Annotation[] getAnnotations();
  /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();
  /dalvik/dx/src/com/android/dx/cf/attrib/
BaseAnnotations.java 69 public final Annotations getAnnotations() {
  /libcore/luni/src/test/java/libcore/java/lang/
PackageTest.java 29 assertEquals(0, 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/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()) {
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
AnnotationFormatter.java 43 for (AnnotationItem annotationItem: annotationSet.getAnnotations()) {
  /cts/tools/dex-tools/src/dex/reader/
DexFieldImpl.java 81 public synchronized Set<DexAnnotation> getAnnotations() {
96 builder.append(formatter.formatAnnotations(getAnnotations()));
DexMethodImpl.java 131 public Set<DexAnnotation> getAnnotations() {
142 builder.append(formatter.formatAnnotations(getAnnotations()));
152 .getAnnotations()));
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
FieldAnnotationStruct.java 119 public Annotations getAnnotations() {
120 return annotations.getAnnotations();
MethodAnnotationStruct.java 119 public Annotations getAnnotations() {
120 return annotations.getAnnotations();
  /dalvik/dx/src/com/android/dx/dex/file/
FieldAnnotationStruct.java 119 public Annotations getAnnotations() {
120 return annotations.getAnnotations();
MethodAnnotationStruct.java 119 public Annotations getAnnotations() {
120 return annotations.getAnnotations();
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
FieldAnnotationStruct.java 119 public Annotations getAnnotations() {
120 return annotations.getAnnotations();
MethodAnnotationStruct.java 119 public Annotations getAnnotations() {
120 return annotations.getAnnotations();
  /dalvik/dx/src/com/android/dx/dex/cf/
AttributeTranslator.java 89 public static Annotations getAnnotations(AttributeList attribs) {
102 * #getAnnotations}, also including annotations for translations
117 Annotations result = getAnnotations(attribs);
148 * #getAnnotations}, also including an annotation for the translation
155 Annotations result = getAnnotations(method.getAttributes());
168 * Helper method for {@link #getAnnotations} which just gets the
186 return invisible.getAnnotations();
190 return visible.getAnnotations();
195 return Annotations.combine(visible.getAnnotations(),
196 invisible.getAnnotations());
    [all...]
  /dalvik/tests/004-annotations/src/android/test/anno/
TestAnnotations.java 32 annos = clazz.getAnnotations();
108 annotations = field.getAnnotations();
112 annotations = field.getAnnotations();

Completed in 625 milliseconds

1 2 3 4