Lines Matching refs:res

90         boolean res = name.equals("case ignore (generic)");  in _loadModule()
93 tRes.tested("loadModule()", res ); in _loadModule()
128 boolean res = name.equals("lower_to_upper(generic)"); in _loadModuleByImplName()
131 tRes.tested("loadModuleByImplName()", res); in _loadModuleByImplName()
145 boolean res = name.equals("upper_to_lower(generic)"); in _loadModulesByImplNames()
148 tRes.tested("loadModulesByImplNames()", res); in _loadModulesByImplNames()
172 boolean res = name.equals("lower_to_upper(generic)"); in _getName()
175 tRes.tested("getName()", res); in _getName()
272 boolean res = oObj.equals("aAbBcC", 1, 3, match1, "aAbBcC", 1, in _equals()
275 log.println("Returned : " + res + " Match1 = " + match1[0] + in _equals()
278 tRes.tested("equals()", res) ; in _equals()
331 int res = -666 ; in testSubstring() local
333 res = oObj.compareSubstring(str1, p1, len1, str2, p2, len2); in testSubstring()
338 if (res != expRes) { in testSubstring()
339 log.print("Comparing FAILED; return: " + res + ", expected: " + in testSubstring()
348 res = -666 ; in testSubstring()
350 res = oObj.compareSubstring(str2, p2, len2, str1, p1, len1); in testSubstring()
355 if (res != -expRes) { in testSubstring()
356 log.print("Comparing FAILED; return: " + res + ", expected: " + in testSubstring()
417 int res = -666 ; in testString() local
419 res = oObj.compareString(str1, str2); in testString()
424 if (res == expRes) { in testString()
428 "' FAILED; return: " + res + ", expected: " + expRes); in testString()
434 res = -666 ; in testString()
436 res = oObj.compareString(str2, str1); in testString()
441 if (res == -expRes) { in testString()
445 "' FAILED; return: " + res + ", expected: " + -expRes); in testString()