Searched defs:toByteArray (Results 1 - 15 of 15) sorted by relevance

/libcore/ojluni/src/main/java/java/text/
H A DCollationKey.java127 abstract public byte[] toByteArray(); method in class:CollationKey
/libcore/luni/src/main/java/libcore/icu/
H A DCollationKeyICU.java36 other.toByteArray());
70 public byte[] toByteArray() { method in class:CollationKeyICU
71 return key.toByteArray();
/libcore/support/src/test/java/tests/support/
H A DSupport_ASimpleOutputStream.java90 public byte[] toByteArray() { method in class:Support_ASimpleOutputStream
H A DSupport_ASimpleWriter.java71 public byte[] toByteArray() { method in class:Support_ASimpleWriter
H A DSupport_OutputStream.java93 public byte[] toByteArray() { method in class:Support_OutputStream
/libcore/luni/src/main/java/libcore/io/
H A DIoUtils.java107 return new FileReader(absolutePath).readFully().toByteArray();
187 * {@link #toByteArray} will then return the internal array and <b>not</b> a copy.
262 public byte[] toByteArray() { method in class:IoUtils.FileReader
/libcore/ojluni/src/main/java/java/io/
H A DByteArrayOutputStream.java34 * The data can be retrieved using <code>toByteArray()</code> and
177 public synchronized byte toByteArray()[] { method in class:ByteArrayOutputStream
/libcore/ojluni/src/main/java/sun/security/util/
H A DBitArray.java169 public byte[] toByteArray() { method in class:BitArray
262 return new String(out.toByteArray());
H A DDerInputBuffer.java64 byte[] toByteArray() { method in class:DerInputBuffer
H A DDerInputStream.java147 public byte[] toByteArray() { method in class:DerInputStream
148 return buffer.toByteArray();
H A DDerValue.java852 public byte[] toByteArray() throws IOException { method in class:DerValue
857 return out.toByteArray();
/libcore/ojluni/src/main/java/java/util/
H A DBitSet.java281 * <br>{@code byte[] bytes = s.toByteArray();}
290 public byte[] toByteArray() { method in class:BitSet
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
H A DCharsetTest.java270 private byte[] toByteArray(int[] ints) { method in class:CharsetTest
282 assertEquals(Arrays.toString(toByteArray(expectedByteInts)), Arrays.toString(bytes));
286 ByteBuffer in = ByteBuffer.wrap(toByteArray(byteInts));
/libcore/luni/src/main/java/java/math/
H A DBigInteger.java381 public byte[] toByteArray() { method in class:BigInteger
/libcore/ojluni/src/main/java/sun/security/ssl/
H A DHandshakeMessage.java101 static byte[] toByteArray(BigInteger bi) { method in class:HandshakeMessage
102 byte[] b = bi.toByteArray();
594 rsa_modulus = toByteArray(rsaKey.getModulus());
595 rsa_exponent = toByteArray(rsaKey.getPublicExponent());
885 dh_p = toByteArray(obj.getModulus());
886 dh_g = toByteArray(obj.getBase());
887 dh_Ys = toByteArray(obj.getPublicKey());

Completed in 320 milliseconds