Searched refs:doTestAllMatches (Results 1 – 2 of 2) sorted by relevance
/external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/ |
D | CharMatcherTest.java | 167 doTestAllMatches(CharMatcher.ANY, "blah"); in testAllMatches() 168 doTestAllMatches(isNot('a'), "bcde"); in testAllMatches() 169 doTestAllMatches(is('a'), "aaaa"); in testAllMatches() 170 doTestAllMatches(noneOf("CharMatcher"), "zxqy"); in testAllMatches() 171 doTestAllMatches(anyOf("x"), "xxxx"); in testAllMatches() 172 doTestAllMatches(anyOf("xy"), "xyyx"); in testAllMatches() 173 doTestAllMatches(anyOf("CharMatcher"), "ChMa"); in testAllMatches() 174 doTestAllMatches(inRange('m', 'p'), "mom"); in testAllMatches() 175 doTestAllMatches(forPredicate(Predicates.equalTo('c')), "ccc"); in testAllMatches() 176 doTestAllMatches(CharMatcher.DIGIT, "0123456789\u0ED0\u1B59"); in testAllMatches() [all …]
|
/external/guava/guava-tests/test/com/google/common/base/ |
D | CharMatcherTest.java | 236 doTestAllMatches(CharMatcher.ANY, "blah"); in testAllMatches() 237 doTestAllMatches(isNot('a'), "bcde"); in testAllMatches() 238 doTestAllMatches(is('a'), "aaaa"); in testAllMatches() 239 doTestAllMatches(noneOf("CharMatcher"), "zxqy"); in testAllMatches() 240 doTestAllMatches(anyOf("x"), "xxxx"); in testAllMatches() 241 doTestAllMatches(anyOf("xy"), "xyyx"); in testAllMatches() 242 doTestAllMatches(anyOf("CharMatcher"), "ChMa"); in testAllMatches() 243 doTestAllMatches(inRange('m', 'p'), "mom"); in testAllMatches() 244 doTestAllMatches(forPredicate(Predicates.equalTo('c')), "ccc"); in testAllMatches() 245 doTestAllMatches(CharMatcher.DIGIT, "0123456789\u0ED0\u1B59"); in testAllMatches() [all …]
|