Home
last modified time | relevance | path

Searched refs:attribs (Results 1 – 6 of 6) sorted by relevance

/dalvik/dx/src/com/android/dx/dex/cf/
DAttributeTranslator.java68 AttributeList attribs = method.getAttributes(); in getExceptions() local
70 attribs.findFirst(AttExceptions.ATTRIBUTE_NAME); in getExceptions()
88 public static Annotations getAnnotations(AttributeList attribs) { in getAnnotations() argument
89 Annotations result = getAnnotations0(attribs); in getAnnotations()
90 Annotation signature = getSignature(attribs); in getAnnotations()
115 AttributeList attribs = cf.getAttributes(); in getClassAnnotations() local
116 Annotations result = getAnnotations(attribs); in getClassAnnotations()
117 Annotation enclosingMethod = translateEnclosingMethod(attribs); in getClassAnnotations()
121 translateInnerClasses(thisClass, attribs, in getClassAnnotations()
173 private static Annotations getAnnotations0(AttributeList attribs) { in getAnnotations0() argument
[all …]
/dalvik/dx/src/com/android/dx/cf/iface/
DStdField.java44 AttributeList attribs = getAttributes(); in getConstantValue() local
46 attribs.findFirst(AttConstantValue.ATTRIBUTE_NAME); in getConstantValue()
/dalvik/dexgen/src/com/android/dexgen/rop/
DStdField.java72 AttributeList attribs = getAttributes(); in getConstantValue() local
74 attribs.findFirst(AttConstantValue.ATTRIBUTE_NAME); in getConstantValue()
/dalvik/dx/src/com/android/dx/cf/code/
DConcreteMethod.java84 AttributeList attribs = method.getAttributes(); in ConcreteMethod() local
85 this.attCode = (AttCode) attribs.findFirst(AttCode.ATTRIBUTE_NAME); in ConcreteMethod()
/dalvik/dx/src/com/android/dx/command/dexer/
DMain.java901 Attributes attribs; in makeManifest() local
906 attribs = manifest.getMainAttributes(); in makeManifest()
907 attribs.put(Attributes.Name.MANIFEST_VERSION, "1.0"); in makeManifest()
910 attribs = manifest.getMainAttributes(); in makeManifest()
914 String createdBy = attribs.getValue(CREATED_BY); in makeManifest()
922 attribs.put(CREATED_BY, createdBy); in makeManifest()
923 attribs.putValue("Dex-Location", DexFormat.DEX_IN_JAR_NAME); in makeManifest()
/dalvik/dx/src/com/android/dx/cf/direct/
DDirectClassFile.java317 AttributeList attribs = getAttributes(); in getSourceFile() local
318 Attribute attSf = attribs.findFirst(AttSourceFile.ATTRIBUTE_NAME); in getSourceFile()