Searched defs:doTestAllMatches (Results 1 - 2 of 2) sorted by relevance

/external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
H A DCharMatcherTest.java167 doTestAllMatches(CharMatcher.ANY, "blah");
168 doTestAllMatches(isNot('a'), "bcde");
169 doTestAllMatches(is('a'), "aaaa");
170 doTestAllMatches(noneOf("CharMatcher"), "zxqy");
171 doTestAllMatches(anyOf("x"), "xxxx");
172 doTestAllMatches(anyOf("xy"), "xyyx");
173 doTestAllMatches(anyOf("CharMatcher"), "ChMa");
174 doTestAllMatches(inRange('m', 'p'), "mom");
175 doTestAllMatches(forPredicate(Predicates.equalTo('c')), "ccc");
176 doTestAllMatches(CharMatche
182 private void doTestAllMatches(CharMatcher matcher, String s) { method in class:CharMatcherTest
[all...]
/external/guava/guava-tests/test/com/google/common/base/
H A DCharMatcherTest.java236 doTestAllMatches(CharMatcher.ANY, "blah");
237 doTestAllMatches(isNot('a'), "bcde");
238 doTestAllMatches(is('a'), "aaaa");
239 doTestAllMatches(noneOf("CharMatcher"), "zxqy");
240 doTestAllMatches(anyOf("x"), "xxxx");
241 doTestAllMatches(anyOf("xy"), "xyyx");
242 doTestAllMatches(anyOf("CharMatcher"), "ChMa");
243 doTestAllMatches(inRange('m', 'p'), "mom");
244 doTestAllMatches(forPredicate(Predicates.equalTo('c')), "ccc");
245 doTestAllMatches(CharMatche
251 private void doTestAllMatches(CharMatcher matcher, String s) { method in class:CharMatcherTest
[all...]

Completed in 189 milliseconds