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

/openjdk9/jdk/test/tools/launcher/
H A DI18NArgTest.java52 String unicodeStr = Character.toString((char)unicodeValue);
53 execTest("\"" + unicodeStr + "\"", hexValue);
54 execTest("\\" + unicodeStr + "\\", hexValue);
55 execTest(" " + unicodeStr + " ", hexValue);
56 execTest("'" + unicodeStr + "'", hexValue);
57 execTest("\t" + unicodeStr + "\t", hexValue);
58 execTest("*" + unicodeStr + "*", hexValue);
59 execTest("?" + unicodeStr + "?", hexValue);
61 execTest("\"" + unicodeStr + unicodeStr
86 execTest(String unicodeStr, String hexValue) argument
[all...]
/openjdk9/jdk/test/sun/nio/cs/
H A DISCIITest.java49 String unicodeStr =
52 if (i != (int)unicodeStr.charAt(0)) {
57 encoded = unicodeStr.getBytes("ISCII91");
81 String unicodeStr = new String (singleByte, "ISCII91");
83 if (unicodeStr.charAt(0) != '\uFFFD') {
108 String unicodeStr = new String (singleByte, "ISCII91");
109 if (unicodeStr.charAt(0) != expectChars[lookupOffset++]) {
112 encoded = unicodeStr.getBytes("ISCII");
313 String unicodeStr = new String (bytePair,"ISCII91");
314 if (unicodeStr
[all...]

Completed in 85 milliseconds