Searched refs:utfBytes (Results 1 - 2 of 2) sorted by relevance

/dalvik/libcore/luni/src/main/java/java/io/
H A DRandomAccessFile.java1083 byte utfBytes[] = new byte[utfCount + 2];
1088 utfBytes[utfIndex++] = (byte) charValue;
1090 utfBytes[utfIndex++] = (byte) (0xc0 | (0x1f & (charValue >> 6)));
1091 utfBytes[utfIndex++] = (byte) (0x80 | (0x3f & charValue));
1093 utfBytes[utfIndex++] = (byte) (0xe0 | (0x0f & (charValue >> 12)));
1094 utfBytes[utfIndex++] = (byte) (0x80 | (0x3f & (charValue >> 6)));
1095 utfBytes[utfIndex++] = (byte) (0x80 | (0x3f & charValue));
1098 utfBytes[0] = (byte) (utfCount >> 8);
1099 utfBytes[1] = (byte) utfCount;
1100 write(utfBytes);
[all...]
/dalvik/libcore/support/src/test/java/tests/support/
H A DSupport_TestWebData.java31 public final static byte[] test1 = utfBytes();
34 private static byte[] utfBytes() { method in class:Support_TestWebData

Completed in 79 milliseconds