HomeSort by relevance Sort by last modified time
    Searched refs:DexAnnotationAttribute (Results 1 - 9 of 9) sorted by null

  /cts/tools/dex-tools/src/dex/structure/
DexAnnotationAttribute.java 30 public interface DexAnnotationAttribute extends NamedElement {
DexEncodedAnnotation.java 24 List<DexAnnotationAttribute> getValue();
DexAnnotation.java 88 List<DexAnnotationAttribute> getAttributes();
  /cts/tools/dex-tools/src/dex/reader/
DexEncodedAnnotationImpl.java 21 import dex.structure.DexAnnotationAttribute;
31 private List<DexAnnotationAttribute> values;
52 values = new ArrayList<DexAnnotationAttribute>(size);
63 public List<DexAnnotationAttribute> getValue() {
DexAnnotationAttributeImpl.java 21 import dex.structure.DexAnnotationAttribute;
25 DexAnnotationAttribute {
DexAnnotationImpl.java 21 import dex.structure.DexAnnotationAttribute;
55 public List<DexAnnotationAttribute> getAttributes() {
74 for (DexAnnotationAttribute value : getAttributes()) {
  /cts/tools/dex-tools/test/dex/reader/
DexFileReaderTests.java 35 import dex.structure.DexAnnotationAttribute;
223 DexAnnotationAttribute dexAnnotationValue = sig.getAttributes().get(0);
248 DexAnnotationAttribute dexAnnotationValue = sig.getAttributes().get(0);
301 DexAnnotationAttribute dexAnnotationValue = sig.getAttributes().get(0);
  /cts/tools/signature-tools/src/signature/converter/dex/
DexToSigConverter.java 88 import dex.structure.DexAnnotationAttribute;
431 DexAnnotationAttribute dexAnnotationAttribute = annotation
433 if ("value".equals(dexAnnotationAttribute.getName())) {
434 DexEncodedValue encodedValue = dexAnnotationAttribute
438 List<DexAnnotationAttribute> defaults =
439 (List<DexAnnotationAttribute>) value.getValue();
440 for (DexAnnotationAttribute defaultAttribute : defaults) {
    [all...]
DexUtil.java 36 import dex.structure.DexAnnotationAttribute;
393 for (DexAnnotationAttribute dexAnnotationAttribute : annotation
395 if (attributeName.equals(dexAnnotationAttribute.getName())) {
396 return dexAnnotationAttribute.getEncodedValue().getValue();

Completed in 53 milliseconds