Lines Matching refs:str1
373 String str1 = new String(new char[] {locChar[0], locChar[0], in testCompareString() local
378 res = oObj.compareString(str1 , str1) ; in testCompareString()
381 toUnicode(str1) + ") ... FAILED\n" ; in testCompareString()
384 res = oObj.compareString(str1, str2) ; in testCompareString()
387 toUnicode(str1) + "),(" + toUnicode(str2) + in testCompareString()
390 col.compare(str1, str2) + "\n" ; in testCompareString()
393 res += oObj.compareString(str2, str1) ; in testCompareString()
396 toUnicode(str1) + "),(" + toUnicode(str2) + in testCompareString()
426 String str1 = new String(new char[] {locChar[0], locChar[0], in testCompareSubstring() local
431 res = oObj.compareSubstring(str1, 1, 2 , str2, 2, 2) ; in testCompareSubstring()
434 toUnicode(str1) + ") ... FAILED\n" ; in testCompareSubstring()
437 res = oObj.compareSubstring(str1, 1, 2, str2, 1, 2) ; in testCompareSubstring()
440 toUnicode(str1.substring(1, 3)) + "),(" + in testCompareSubstring()
444 (str1.substring(1, 3), str2.substring(1, 3)) + "\n" ; in testCompareSubstring()
447 res += oObj.compareSubstring(str2, 1, 2, str1, 1, 2) ; in testCompareSubstring()
450 toUnicode(str1) + "),(" + toUnicode(str2) + in testCompareSubstring()