Lines Matching refs:testSubstring
296 result &= testSubstring("", 0, 0, "", 0, 0, 0) ; in _compareSubstring()
297 result &= testSubstring("aa", 1, 0, "", 0, 0, 0) ; in _compareSubstring()
298 result &= testSubstring("aa", 1, 0, "aa", 2, 0, 0) ; in _compareSubstring()
299 result &= testSubstring("a", 0, 1, "a", 0, 1, 0) ; in _compareSubstring()
300 result &= testSubstring("ab", 0, 2, "ab", 0, 2, 0) ; in _compareSubstring()
301 result &= testSubstring("abc", 1, 2, "abc", 1, 2, 0) ; in _compareSubstring()
302 result &= testSubstring("abcdef", 0, 3, "123abc", 3, 3, 0) ; in _compareSubstring()
303 result &= testSubstring("abcdef", 1, 1, "123abc", 4, 1, 0) ; in _compareSubstring()
306 result &= testSubstring("a", 0, 1, "a", 0, 0, 1) ; in _compareSubstring()
307 result &= testSubstring("aaa", 1, 1, "", 0, 0, 1) ; in _compareSubstring()
308 result &= testSubstring("bbb", 2, 1, "aaa", 2, 1, 1) ; in _compareSubstring()
309 result &= testSubstring("abc", 0, 3, "abc", 0, 2, 1) ; in _compareSubstring()
310 result &= testSubstring("bbc", 1, 2, "bbc", 0, 2, 1) ; in _compareSubstring()
326 private boolean testSubstring(String str1, int p1, int len1, in testSubstring() method in _XTransliteration