HomeSort by relevance Sort by last modified time
    Searched defs:byteLength (Results 1 - 25 of 62) sorted by null

1 2 3

  /dalvik/dexgen/src/com/android/dexgen/rop/
Attribute.java 37 public int byteLength();
AttConstantValue.java 62 public int byteLength() {
AttributeList.java 55 public int byteLength();
StdAttributeList.java 42 public int byteLength() {
47 result += get(i).byteLength();
  /dalvik/dx/src/com/android/dx/cf/attrib/
AttAnnotationDefault.java 33 private final int byteLength;
39 * @param byteLength {@code >= 0;} attribute data length in the original
42 public AttAnnotationDefault(Constant value, int byteLength) {
50 this.byteLength = byteLength;
54 public int byteLength() {
56 return byteLength + 6;
AttConstantValue.java 62 public int byteLength() {
AttDeprecated.java 34 public int byteLength() {
AttSignature.java 47 public int byteLength() {
AttSourceFile.java 47 public int byteLength() {
AttSynthetic.java 34 public int byteLength() {
BaseAnnotations.java 31 private final int byteLength;
38 * @param byteLength {@code >= 0;} attribute data length in the original
42 int byteLength) {
55 this.byteLength = byteLength;
59 public final int byteLength() {
61 return byteLength + 6;
BaseLocalVariables.java 53 public final int byteLength() {
BaseParameterAnnotations.java 31 private final int byteLength;
38 * @param byteLength {@code >= 0;} attribute data length in the original
42 AnnotationsList parameterAnnotations, int byteLength) {
56 this.byteLength = byteLength;
60 public final int byteLength() {
62 return byteLength + 6;
AttEnclosingMethod.java 55 public int byteLength() {
AttExceptions.java 54 public int byteLength() {
AttInnerClasses.java 52 public int byteLength() {
AttLineNumberTable.java 53 public int byteLength() {
RawAttribute.java 77 public int byteLength() {
AttCode.java 96 public int byteLength() {
97 return 10 + code.byteLength() + catches.byteLength() +
98 attributes.byteLength();
  /dalvik/dx/src/com/android/dx/cf/iface/
Attribute.java 37 public int byteLength();
AttributeList.java 55 public int byteLength();
  /external/chromium_org/third_party/WebKit/Source/wtf/
ArrayBufferBuilder.h 70 unsigned byteLength() const
78 return m_buffer->byteLength();
TypedArrayBase.h 63 virtual unsigned byteLength() const
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/support/
WebArrayBuffer.cpp 65 unsigned WebArrayBuffer::byteLength() const
68 return m_private->byteLength();
  /external/chromium_org/third_party/WebKit/Source/web/
WebArrayBufferView.cpp 59 unsigned WebArrayBufferView::byteLength() const
61 return m_private->byteLength();

Completed in 161 milliseconds

1 2 3