Searched refs:attributes (Results 1 - 12 of 12) sorted by relevance

/dalvik/dx/src/com/android/dx/cf/attrib/
H A DAttCode.java25 * Attribute class for standard {@code Code} attributes.
28 /** {@code non-null;} attribute name for attributes of this type */
43 /** {@code non-null;} the associated list of attributes */
44 private final AttributeList attributes; field in class:AttCode
53 * @param attributes {@code non-null;} the associated list of attributes
56 ByteCatchList catches, AttributeList attributes) {
81 if (attributes.isMutable()) {
82 throw new MutabilityException("attributes.isMutable()");
86 throw new NullPointerException("attributes
55 AttCode(int maxStack, int maxLocals, BytecodeArray code, ByteCatchList catches, AttributeList attributes) argument
[all...]
/dalvik/dexgen/src/com/android/dexgen/rop/
H A DStdMember.java37 /** {@code non-null;} list of associated attributes */
38 private final AttributeList attributes; field in class:StdMember
46 * @param attributes {@code non-null;} list of associated attributes
49 AttributeList attributes) {
58 if (attributes == null) {
59 throw new NullPointerException("attributes == null");
65 this.attributes = attributes;
108 return attributes;
48 StdMember(CstType definingClass, int accessFlags, CstNat nat, AttributeList attributes) argument
[all...]
H A DStdField.java35 * @param attributes {@code non-null;} list of associated attributes
38 AttributeList attributes) {
39 super(definingClass, accessFlags, nat, attributes);
37 StdField(CstType definingClass, int accessFlags, CstNat nat, AttributeList attributes) argument
/dalvik/dx/src/com/android/dx/cf/iface/
H A DStdMember.java37 /** {@code non-null;} list of associated attributes */
38 private final AttributeList attributes; field in class:StdMember
46 * @param attributes {@code non-null;} list of associated attributes
49 AttributeList attributes) {
58 if (attributes == null) {
59 throw new NullPointerException("attributes == null");
65 this.attributes = attributes;
114 return attributes;
48 StdMember(CstType definingClass, int accessFlags, CstNat nat, AttributeList attributes) argument
[all...]
H A DStdField.java35 * @param attributes {@code non-null;} list of associated attributes
38 AttributeList attributes) {
39 super(definingClass, accessFlags, nat, attributes);
37 StdField(CstType definingClass, int accessFlags, CstNat nat, AttributeList attributes) argument
H A DStdMethod.java38 * @param attributes {@code non-null;} list of associated attributes
41 AttributeList attributes) {
42 super(definingClass, accessFlags, nat, attributes);
40 StdMethod(CstType definingClass, int accessFlags, CstNat nat, AttributeList attributes) argument
/dalvik/dx/src/com/android/dx/command/annotool/
H A DAnnotationLister.java76 AttributeList attributes = cf.getAttributes();
83 att = attributes.findFirst(
86 for (;att != null; att = attributes.findNext(att)) {
91 att = attributes.findFirst(
94 for (;att != null; att = attributes.findNext(att)) {
102 att = attributes.findFirst(
105 for (;att != null; att = attributes.findNext(att)) {
110 att = attributes.findFirst(
113 for (;att != null; att = attributes.findNext(att)) {
/dalvik/dx/src/com/android/dx/cf/direct/
H A DFieldListParser.java79 AttributeList attributes) {
81 new StdField(getDefiner(), accessFlags, nat, attributes);
78 set(int n, int accessFlags, CstNat nat, AttributeList attributes) argument
H A DMethodListParser.java79 AttributeList attributes) {
81 new StdMethod(getDefiner(), accessFlags, nat, attributes);
78 set(int n, int accessFlags, CstNat nat, AttributeList attributes) argument
H A DMemberListParser.java149 * Gets the {@code CTX_*} constant to use when parsing attributes.
163 * @param attributes list of parsed attributes
167 AttributeList attributes);
214 StdAttributeList attributes = parser.getList();
215 attributes.setImmutable();
217 Member member = set(i, accessFlags, nat, attributes);
166 set(int n, int accessFlags, CstNat nat, AttributeList attributes) argument
H A DDirectClassFile.java143 * {@code null-ok;} the class file field {@code attributes}; only
147 private StdAttributeList attributes; field in class:DirectClassFile
327 return attributes;
424 if (attributes == null) {
586 attributes = alParser.getList();
587 attributes.setImmutable();
H A DStdAttributeFactory.java336 StdAttributeList attributes = parser.getList();
337 attributes.setImmutable();
344 return new AttCode(maxStack, maxLocals, code, catches, attributes);

Completed in 562 milliseconds