Lines Matching refs:result

104         boolean result = true ;  in _loadModuleNew()
111 result = name.equals("lower_to_upper(generic)"); in _loadModuleNew()
114 tRes.tested("loadModuleNew()", result); in _loadModuleNew()
157 boolean result = oObj.getType() == TransliterationType.ONE_TO_ONE; in _getType()
158 tRes.tested("getType()", result); in _getType()
193 boolean result = "ABBC".equals(out) && offs[0].length == 4 && in _transliterate()
199 tRes.tested("transliterate()", result) ; in _transliterate()
250 boolean result = "ABBC".equals(out) && offs[0].length == 4 && in _folding()
257 tRes.tested("folding()", result) ; in _folding()
293 boolean result = true ; in _compareSubstring()
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()
314 tRes.tested("compareSubstring()", result) ; in _compareSubstring()
378 boolean result = true ; in _compareString()
380 result &= testString("", "", 0) ; in _compareString()
381 result &= testString("a", "", 1) ; in _compareString()
382 result &= testString("a", "a", 0) ; in _compareString()
383 result &= testString("A", "a", 0) ; in _compareString()
384 result &= testString("b", "a", 1) ; in _compareString()
385 result &= testString("\n", "\n", 0) ; in _compareString()
386 result &= testString("\n", "\t", 1) ; in _compareString()
387 result &= testString("aaa", "aaa", 0) ; in _compareString()
388 result &= testString("aaA", "aaa", 0) ; in _compareString()
389 result &= testString("aaa", "aa", 1) ; in _compareString()
390 result &= testString("ab", "aaa", 1) ; in _compareString()
391 result &= testString("aba", "aa", 1) ; in _compareString()
392 result &= testString("aaa\t\na", "aaa\t\na", 0) ; in _compareString()
393 result &= testString("aaa\t\nb", "aaa\t\na", 1) ; in _compareString()
395 tRes.tested("compareString()", result) ; in _compareString()