Searched refs:allLowerCaseAscii (Results 1 – 3 of 3) sorted by relevance
56 public void allLowerCaseAscii() { in allLowerCaseAscii() method in UtilsTest57 assertTrue(Utils.allLowerCaseAscii(list("one", "a", "z"))); in allLowerCaseAscii()58 assertFalse(Utils.allLowerCaseAscii(list("one", "a", "Z"))); in allLowerCaseAscii()59 assertFalse(Utils.allLowerCaseAscii(list("one", "A", "z"))); in allLowerCaseAscii()60 assertFalse(Utils.allLowerCaseAscii(list("onE", "a", "z"))); in allLowerCaseAscii()
105 static boolean allLowerCaseAscii(List<String> strings) { in allLowerCaseAscii() method in Utils
128 if (!Utils.allLowerCaseAscii(countriesInIsos)) { in execute()