Searched refs:byteLength (Results 1 - 25 of 32) sorted by relevance

12

/dalvik/dx/src/com/android/dx/cf/attrib/
H A DAttAnnotationDefault.java33 private final int byteLength; field in class:AttAnnotationDefault
39 * @param byteLength {@code >= 0;} attribute data length in the original
42 public AttAnnotationDefault(Constant value, int byteLength) { argument
50 this.byteLength = byteLength;
55 public int byteLength() { method in class:AttAnnotationDefault
57 return byteLength + 6;
H A DBaseAnnotations.java31 private final int byteLength; field in class:BaseAnnotations
38 * @param byteLength {@code >= 0;} attribute data length in the original
42 int byteLength) {
55 this.byteLength = byteLength;
60 public final int byteLength() { method in class:BaseAnnotations
62 return byteLength + 6;
41 BaseAnnotations(String attributeName, Annotations annotations, int byteLength) argument
H A DBaseParameterAnnotations.java31 private final int byteLength; field in class:BaseParameterAnnotations
38 * @param byteLength {@code >= 0;} attribute data length in the original
42 AnnotationsList parameterAnnotations, int byteLength) {
56 this.byteLength = byteLength;
61 public final int byteLength() { method in class:BaseParameterAnnotations
63 return byteLength + 6;
41 BaseParameterAnnotations(String attributeName, AnnotationsList parameterAnnotations, int byteLength) argument
H A DAttBootstrapMethods.java33 private final int byteLength; field in class:AttBootstrapMethods
44 this.byteLength = bytes;
48 public int byteLength() { method in class:AttBootstrapMethods
49 return byteLength;
H A DAttDeprecated.java35 public int byteLength() { method in class:AttDeprecated
H A DAttSynthetic.java35 public int byteLength() { method in class:AttSynthetic
H A DAttRuntimeInvisibleAnnotations.java33 * @param byteLength {@code >= 0;} attribute data length in the original
37 int byteLength) {
38 super(ATTRIBUTE_NAME, annotations, byteLength);
36 AttRuntimeInvisibleAnnotations(Annotations annotations, int byteLength) argument
H A DAttRuntimeInvisibleParameterAnnotations.java35 * @param byteLength {@code >= 0;} attribute data length in the original
39 AnnotationsList parameterAnnotations, int byteLength) {
40 super(ATTRIBUTE_NAME, parameterAnnotations, byteLength);
38 AttRuntimeInvisibleParameterAnnotations( AnnotationsList parameterAnnotations, int byteLength) argument
H A DAttRuntimeVisibleAnnotations.java33 * @param byteLength {@code >= 0;} attribute data length in the original
37 int byteLength) {
38 super(ATTRIBUTE_NAME, annotations, byteLength);
36 AttRuntimeVisibleAnnotations(Annotations annotations, int byteLength) argument
H A DAttRuntimeVisibleParameterAnnotations.java35 * @param byteLength {@code >= 0;} attribute data length in the original
39 AnnotationsList annotations, int byteLength) {
40 super(ATTRIBUTE_NAME, annotations, byteLength);
38 AttRuntimeVisibleParameterAnnotations( AnnotationsList annotations, int byteLength) argument
H A DAttCode.java97 public int byteLength() { method in class:AttCode
98 return 10 + code.byteLength() + catches.byteLength() +
99 attributes.byteLength();
H A DAttSignature.java48 public int byteLength() { method in class:AttSignature
H A DAttSourceFile.java48 public int byteLength() { method in class:AttSourceFile
H A DAttExceptions.java55 public int byteLength() { method in class:AttExceptions
H A DAttInnerClasses.java53 public int byteLength() { method in class:AttInnerClasses
H A DAttLineNumberTable.java54 public int byteLength() { method in class:AttLineNumberTable
H A DAttSourceDebugExtension.java48 public int byteLength() { method in class:AttSourceDebugExtension
H A DBaseLocalVariables.java54 public final int byteLength() { method in class:BaseLocalVariables
H A DAttEnclosingMethod.java56 public int byteLength() { method in class:AttEnclosingMethod
/dalvik/dexgen/src/com/android/dexgen/rop/
H A DAttribute.java37 public int byteLength(); method in interface:Attribute
H A DAttributeList.java55 public int byteLength(); method in interface:AttributeList
H A DStdAttributeList.java42 public int byteLength() { method in class:StdAttributeList
47 result += get(i).byteLength();
/dalvik/dx/src/com/android/dx/cf/iface/
H A DAttribute.java37 public int byteLength(); method in interface:Attribute
H A DAttributeList.java55 public int byteLength(); method in interface:AttributeList
H A DStdAttributeList.java44 public int byteLength() { method in class:StdAttributeList
49 result += get(i).byteLength();

Completed in 109 milliseconds

12