Searched defs:testStr (Results 1 - 7 of 7) sorted by relevance
/openjdk7/jdk/test/java/io/StreamTokenizer/ |
H A D | QuoteTest.java | 36 static String testStr = "token1 token2 \"The test string\" token4"; field in class:QuoteTest 39 System.err.println("Parsing String: " + testStr); 40 StreamTokenizer st = new StreamTokenizer(new StringReader(testStr));
|
/openjdk7/jdk/test/sun/nio/cs/ |
H A D | TestUTF8BOM.java | 61 private static void failureReport(String testStr, argument 69 Integer.toHexString((int)testStr.charAt(i)));
|
H A D | TestISO2022JP.java | 542 private static void roundTrip(String testStr, byte[] expectBytes, argument 545 byte[] encodedBytes = testStr.getBytes(csName); 558 if (!decoded.equals(testStr)) {
|
H A D | TestUTF_16.java | 65 private static void failureReport(String testStr, argument 73 Integer.toHexString((int)testStr.charAt(i))); 79 String testStr, 83 if (testStr.length() != expected.length) 84 failureReport(testStr, expected); 86 for (int i = 0; i < testStr.length(); i++) { 87 if (testStr.charAt(i) != expected[i]) { 88 failureReport(testStr, expected);
|
H A D | TestUTF_32.java | 63 private static void failureReport(String testStr, argument 70 Integer.toHexString((int)testStr.charAt(i)));
|
H A D | TestMS5022X.java | 639 String testStr, 642 byte[] encodedBytes = testStr.getBytes(name); 658 if (!decoded.equals(testStr)) { 685 String testStr = US_ASCII + 697 roundTrip("MS50221", testStr, expectedBytes); 723 testStr = testStr.replace('\u301E', '\u301D') 727 testStr, 730 testStr = MIXEDCONTENT; 731 roundTrip("MS50221", testStr , mixedBytesExpecte 638 roundTrip(String name, String testStr, byte[] expectBytes) argument [all...] |
/openjdk7/jdk/test/java/nio/Buffer/ |
H A D | BasicChar.java | 774 private static void testStr() { method in class:BasicChar 920 testStr();
|
Completed in 77 milliseconds