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

/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
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 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 DAttributes.java98 public int byteLength() { method in class:Attributes
101 length += a.byteLength();
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...]
H A DAccessFlags.java79 public int byteLength() { method in class:AccessFlags
H A DAttribute.java151 public int byteLength() { method in class:Attribute
/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;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DByteVector.java250 int byteLength = i;
254 byteLength++;
256 byteLength += 3;
258 byteLength += 2;
261 data[length] = (byte) (byteLength >>> 8);
262 data[length + 1] = (byte) byteLength;
263 if (length + 2 + byteLength > data.length) {
265 enlarge(2 + byteLength);
/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/jaxp/src/com/sun/org/apache/xerces/internal/impl/io/
H A DUCSReader.java163 int byteLength = length << ((fEncoding >= 4)?2:1);
164 if (byteLength > fBuffer.length) {
165 byteLength = fBuffer.length;
167 int count = fInputStream.read(fBuffer, 0, byteLength);
/openjdk7/langtools/test/tools/javap/
H A DT6866657.java28 * @summary add byteLength() method to primary classfile types
62 expectEqual(cfInfo.cf.byteLength(), cfInfo.size);
/openjdk7/jdk/src/share/classes/java/math/
H A DBigInteger.java2833 int byteLength = a.length;
2837 for (keep = 0; keep < byteLength && a[keep]==0; keep++)
2841 int intLength = ((byteLength - keep) + 3) >>> 2;
2843 int b = byteLength - 1;
2860 int byteLength = a.length;
2863 for (keep=0; keep<byteLength && a[keep]==-1; keep++)
2869 for (k=keep; k<byteLength && a[k]==0; k++)
2872 int extraByte = (k==byteLength) ? 1 : 0;
2873 int intLength = ((byteLength - keep + extraByte) + 3)/4;
2878 int b = byteLength
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/
H A DEncoder.java2533 int byteLength = 0;
2541 _encodingBuffer[byteLength++] = (byte)(c >> 8);
2542 _encodingBuffer[byteLength++] = (byte)(c & 0xFF);
2545 return byteLength;
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DClassReader.java825 int byteLength = ((String) bytes.get(0)).length();
826 boolean uoffsetIsU4 = (byteLength >= (1 << 16));
H A DClassWriter.java660 int byteLength = ((String) bytes.get(0)).length();
661 boolean uoffsetIsU4 = (byteLength >= (1 << 16));

Completed in 69 milliseconds