Lines Matching refs:get
145 String get = ""; in _toUpper() local
149 get = oObj.toUpper(toCheck, 0, toCheck.length(), getLocale(i)); in _toUpper()
152 res &= get.equals(exp); in _toUpper()
157 System.out.println("Gained : " + get); in _toUpper()
176 String get = ""; in _toLower() local
180 get = oObj.toLower(toCheck,0,toCheck.length(),getLocale(i)); in _toLower()
183 res &= get.equals(exp); in _toLower()
188 System.out.println("Gained : " + get); in _toLower()
205 String get = ""; in _toTitle() local
209 get = oObj.toTitle(toCheck, 0, 1, getLocale(i)); in _toTitle()
212 res &= get.equals(exp); in _toTitle()
217 System.out.println("Gained : " + get); in _toTitle()
248 int get = oObj.getType(toCheck, i); in _getType() local
249 res &= (charstyles_office[get] == charstyles_office[i]); in _getType()
252 System.out.println("Gained: " + charstyles_office[get]); in _getType()
281 int get = oObj.getCharacterType(toCheck, i, getLocale(j)); in _getCharacterType() local
282 res &= (get == expected[i]); in _getCharacterType()
287 System.out.println("Gained: " + get); in _getCharacterType()
309 int get = oObj.getStringType(toCheck[j], 0, in _getStringType() local
311 res &= (get == exp[j]); in _getStringType()
316 System.out.println("Gained : " + get); in _getStringType()
337 short get = oObj.getCharacterDirection(toCheck, i); in _getCharacterDirection() local
338 res &= (get == i); in _getCharacterDirection()
341 System.out.println("Gained: " + get); in _getCharacterDirection()
372 int get = oObj.getScript(toCheck, i); in _getScript() local
376 res &= (get == i); in _getScript()
381 …System.out.println("Gained: " + get + " (" + (0 <= get && get < unicode_script.length ? unicode_sc… in _getScript()