- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for bcda (0.02 seconds)
-
android/guava-tests/test/com/google/common/base/CharMatcherTest.java
tester.testAllPublicInstanceMethods(matcher); } public void testNoMatches() { doTestNoMatches(CharMatcher.none(), "blah"); doTestNoMatches(is('a'), "bcde"); doTestNoMatches(isNot('a'), "aaaa"); doTestNoMatches(anyOf(""), "abcd"); doTestNoMatches(anyOf("x"), "abcd"); doTestNoMatches(anyOf("xy"), "abcd"); doTestNoMatches(anyOf("CharMatcher"), "zxqy");
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 32.4K bytes - Click Count (0) -
guava-tests/test/com/google/common/base/SplitterTest.java
} public void testLimitFixedLength() { String simple = "abcd"; Iterable<String> letters = Splitter.fixedLength(1).limit(2).split(simple); assertThat(letters).containsExactly("a", "bcd").inOrder(); } public void testLimit1Separator() { String simple = "a,b,c,d"; Iterable<String> items = COMMA_SPLITTER.limit(1).split(simple); assertThat(items).containsExactly("a,b,c,d").inOrder();
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 15:59:55 GMT 2026 - 29.7K bytes - Click Count (0)