/dalvik/dx/src/com/android/dx/dex/cf/ |
AttributeTranslator.java | 88 public static Annotations getAnnotations(AttributeList attribs) { 101 * #getAnnotations}, also including annotations for translations 116 Annotations result = getAnnotations(attribs); 147 * #getAnnotations}, also including an annotation for the translation 154 Annotations result = getAnnotations(method.getAttributes()); 167 * Helper method for {@link #getAnnotations} which just gets the 185 return invisible.getAnnotations(); 189 return visible.getAnnotations(); 194 return Annotations.combine(visible.getAnnotations(), 195 invisible.getAnnotations()); [all...] |
/cts/tools/dex-tools/src/dex/reader/ |
DexMethodImpl.java | 131 public Set<DexAnnotation> getAnnotations() { 142 builder.append(formatter.formatAnnotations(getAnnotations())); 152 .getAnnotations()));
|
DexParameterImpl.java | 64 public Set<DexAnnotation> getAnnotations() {
|
/external/junit/src/org/junit/runners/model/ |
TestClass.java | 52 for (Annotation each : member.getAnnotations()) { 134 public Annotation[] getAnnotations() { 137 return fClass.getAnnotations();
|
FrameworkMethod.java | 145 public Annotation[] getAnnotations() { 146 return fMethod.getAnnotations();
|
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
AnnotationSetItem.java | 56 for (Annotation a : annotations.getAnnotations()) { 84 public Annotations getAnnotations() {
|
/dalvik/dx/src/com/android/dx/dex/file/ |
AnnotationSetItem.java | 56 for (Annotation a : annotations.getAnnotations()) { 84 public Annotations getAnnotations() {
|
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
AnnotationSetItem.java | 56 for (Annotation a : annotations.getAnnotations()) { 84 public Annotations getAnnotations() {
|
/external/javassist/src/main/javassist/bytecode/ |
ParameterAnnotationsAttribute.java | 130 public Annotation[][] getAnnotations() { 195 Annotation[][] aa = getAnnotations();
|
/external/junit/src/org/junit/runner/ |
Description.java | 74 return new Description(testClass.getName(), testClass.getAnnotations()); 194 public Collection<Annotation> getAnnotations() {
|
/libcore/libart/src/main/java/java/lang/reflect/ |
Constructor.java | 59 public Annotation[] getAnnotations() { 60 return super.getAnnotations();
|
Method.java | 88 public Annotation[] getAnnotations() { 89 return super.getAnnotations();
|
/art/test/004-annotations/src/android/test/anno/ |
TestAnnotations.java | 32 annos = clazz.getAnnotations(); 108 annotations = field.getAnnotations(); 112 annotations = field.getAnnotations(); 179 // Package annotations aren't inherited, so getAnnotations and getDeclaredAnnotations are 182 printAnnotationArray(" ", TestAnnotations.class.getPackage().getAnnotations());
|
/dalvik/dx/src/com/android/dx/command/annotool/ |
AnnotationLister.java | 148 for (Annotation anAnn : ann.getAnnotations().getAnnotations()) { 182 for (Annotation anAnn : ann.getAnnotations().getAnnotations()) {
|
/dalvik/tests/004-annotations/src/android/test/anno/ |
TestAnnotations.java | 32 annos = clazz.getAnnotations(); 108 annotations = field.getAnnotations(); 112 annotations = field.getAnnotations(); 179 // Package annotations aren't inherited, so getAnnotations and getDeclaredAnnotations are 182 printAnnotationArray(" ", TestAnnotations.class.getPackage().getAnnotations());
|
/external/javassist/src/main/javassist/ |
CtMember.java | 35 public Object[] getAnnotations() 237 * @see CtClass#getAnnotations() 239 public abstract Object[] getAnnotations() throws ClassNotFoundException; 243 * This method is equivalent to <code>getAnnotations()</code> 248 * @see #getAnnotations()
|
/external/junit/src/org/junit/internal/runners/ |
JUnit4ClassRunner.java | 74 return fTestClass.getJavaClass().getAnnotations(); 121 return method.getAnnotations();
|
/external/mockito/src/org/mockito/ |
MockitoAnnotations.java | 122 for(Annotation annotation : field.getAnnotations()) {
|
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/ |
ClassDefinition.java | 173 AnnotationDirectoryItem annotationDirectory = classDefItem.getAnnotations(); 223 AnnotationDirectoryItem annotations = classDefItem.getAnnotations(); 264 AnnotationDirectoryItem annotations = classDefItem.getAnnotations(); 322 AnnotationDirectoryItem annotations = classDefItem.getAnnotations();
|
/cts/tools/signature-tools/src/signature/converter/dex/ |
DexToSigConverter.java | 187 aPackage.setAnnotations(packageInfo.getAnnotations()); 420 sigClass.setAnnotations(convertAnnotations(dexClass.getAnnotations())); 465 .getAnnotations())); 510 .getAnnotations())); 531 field.setAnnotations(convertAnnotations(dexField.getAnnotations())); 614 .getAnnotations())); 636 .getAnnotations())); 687 method.setAnnotations(convertAnnotations(dexMethod.getAnnotations())); 707 .getAnnotations())); 763 .getAnnotations())); [all...] |
/cts/tools/dex-tools/test/dex/reader/ |
DexFileReaderTests.java | 179 assertEquals(2, A0.getAnnotations().size()); 200 assertEquals(1, T3.getAnnotations().size()); 335 assertEquals(1, dexParameter.getAnnotations().size()); 336 DexAnnotation annotation = dexParameter.getAnnotations().iterator().next();
|
/cts/tools/signature-tools/src/signature/compare/ |
ApiComparator.java | 170 .getAnnotations(), to.getAnnotations()); 281 .getAnnotations(), to.getAnnotations()); 693 .getAnnotations(), to.getAnnotations()); [all...] |
/cts/tools/signature-tools/src/signature/model/util/ |
ModelUtil.java | 55 for (IAnnotation annotation : element.getAnnotations()) {
|
/dalvik/dexgen/src/com/android/dexgen/rop/annotation/ |
Annotations.java | 210 public Collection<Annotation> getAnnotations() {
|
/dalvik/dx/src/com/android/dx/rop/annotation/ |
Annotations.java | 209 public Collection<Annotation> getAnnotations() {
|