Searched defs:expectBytes (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/test/sun/nio/cs/
H A DSurrogateTestHKSCS.java335 final static byte[] expectBytes = { field in class:SurrogateTestHKSCS
1174 for (int i=0, j=0 ; j < expectBytes.length ; i++, j+=2) {
1180 if (encodedBytes[0] != expectBytes[j]
1181 && encodedBytes[1] != expectBytes[j+1])
H A DTestISO2022JP.java542 private static void roundTrip(String testStr, byte[] expectBytes, argument
547 if (encodedBytes.length != expectBytes.length) {
551 for (int i = 0; i < expectBytes.length; i++) {
552 if (encodedBytes[i] != expectBytes[i]) {
H A DTestMS5022X.java640 byte[] expectBytes)
643 if (encodedBytes.length != expectBytes.length) {
645 // encodedBytes.length,expectBytes.length);
648 for (int i = 0; i < expectBytes.length; i++) {
650 if (encodedBytes[i] != expectBytes[i]) {
655 //encodedBytes[i],expectBytes[i]);
638 roundTrip(String name, String testStr, byte[] expectBytes) argument

Completed in 39 milliseconds