Searched defs:byteLength (Results 1 - 11 of 11) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DAttributes.java98 public int byteLength() { method in class:Attributes
101 length += a.byteLength();
H A DField.java53 public int byteLength() { method in class:Field
54 return 6 + attributes.byteLength();
H A DMethod.java53 public int byteLength() { method in class:Method
54 return 6 + attributes.byteLength();
H A DClassFile.java142 public int byteLength() { method in class:ClassFile
146 constant_pool.byteLength() +
150 byteLength(interfaces) +
151 byteLength(fields) +
152 byteLength(methods) +
153 attributes.byteLength();
156 private int byteLength(int[] indices) { method in class:ClassFile
160 private int byteLength(Field[] fields) { method in class:ClassFile
163 length += f.byteLength();
167 private int byteLength(Metho method in class:ClassFile
[all...]
H A DAccessFlags.java79 public int byteLength() { method in class:AccessFlags
H A DAttribute.java151 public int byteLength() { method in class:Attribute
H A DConstantPool.java244 public int byteLength() { method in class:ConstantPool
248 length += cpInfo.byteLength();
369 public abstract int byteLength(); method in class:ConstantPool.CPInfo
395 public int byteLength() { method in class:ConstantPool.CPRefInfo
431 public int byteLength() { method in class:ConstantPool.CONSTANT_Class_info
497 public int byteLength() { method in class:ConstantPool.CONSTANT_Double_info
550 public int byteLength() { method in class:ConstantPool.CONSTANT_Float_info
579 public int byteLength() { method in class:ConstantPool.CONSTANT_Integer_info
631 public int byteLength() { method in class:ConstantPool.CONSTANT_InvokeDynamic_info
670 public int byteLength() { method in class:ConstantPool.CONSTANT_Long_info
703 public int byteLength() { method in class:ConstantPool.CONSTANT_MethodHandle_info
747 public int byteLength() { method in class:ConstantPool.CONSTANT_MethodType_info
803 public int byteLength() { method in class:ConstantPool.CONSTANT_NameAndType_info
843 public int byteLength() { method in class:ConstantPool.CONSTANT_String_info
876 public int byteLength() { method in class:ConstantPool.CONSTANT_Utf8_info
[all...]
/openjdk7/jdk/src/share/classes/javax/sound/midi/
H A DMidiFileFormat.java127 protected int byteLength; field in class:MidiFileFormat
159 this.byteLength = bytes;
242 return byteLength;
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DAudioFileFormat.java118 private int byteLength; field in class:AudioFileFormat
141 * @param byteLength the length of the file in bytes, or <code>AudioSystem.NOT_SPECIFIED</code>
147 protected AudioFileFormat(Type type, int byteLength, AudioFormat format, int frameLength) { argument
150 this.byteLength = byteLength;
214 return byteLength;
296 if (byteLength != AudioSystem.NOT_SPECIFIED) {
297 buf.append(", byte length: " + byteLength);
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DAiffFileFormat.java77 AiffFileFormat(Type type, int byteLength, AudioFormat format, int frameLength) { argument
78 super(type, byteLength, format, frameLength);
H A DDataPusher.java69 public DataPusher(SourceDataLine sourceLine, AudioFormat format, byte[] audioData, int byteLength) { argument
71 this.audioDataByteLength = byteLength;

Completed in 58 milliseconds