Searched defs:getByteLength (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/sound/midi/
H A DMidiFileFormat.java97 * @see #getByteLength
241 public int getByteLength() { method in class:MidiFileFormat
249 * @see #getByteLength
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DAudioFileFormat.java213 public int getByteLength() { method in class:AudioFileFormat
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DSharedNameTable.java107 (n.getByteLength() != nbytes ||
131 (n.getByteLength() != len || !equals(names, n.index, cs, start, len))) {
185 public int getByteLength() { method in class:SharedNameTable.NameImpl
H A DUnsharedNameTable.java115 if (n.getByteLength() == len && equals(n.bytes, 0, cs, start, len)) {
164 public int getByteLength() { method in class:UnsharedNameTable.NameImpl
H A DName.java76 int len = getByteLength();
77 byte[] bs = new byte[len + n.getByteLength()];
87 int len = getByteLength();
88 byte[] bs = new byte[len + 1 + n.getByteLength()];
104 return getByteLength() == 0;
112 int i = getByteLength() - 1;
122 int thisLength = this.getByteLength();
125 int prefixLength = prefix.getByteLength();
146 return Convert.utf2string(getByteArray(), getByteOffset(), getByteLength());
152 byte[] bs = new byte[getByteLength()];
164 public abstract int getByteLength(); method in class:Name
[all...]
/openjdk7/jdk/src/share/classes/sun/security/rsa/
H A DRSACore.java62 public static int getByteLength(BigInteger b) { method in class:RSACore
71 public static int getByteLength(RSAKey key) { method in class:RSACore
72 return getByteLength(key.getModulus());
114 return toByteArray(c, getByteLength(n));
172 return toByteArray(m, getByteLength(n));

Completed in 35 milliseconds