Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for doTestAllMatches (0.24 sec)

  1. guava-tests/test/com/google/common/base/CharMatcherTest.java

      }
    
      public void testAllMatches() {
        doTestAllMatches(CharMatcher.any(), "blah");
        doTestAllMatches(isNot('a'), "bcde");
        doTestAllMatches(is('a'), "aaaa");
        doTestAllMatches(noneOf("CharMatcher"), "zxqy");
        doTestAllMatches(anyOf("x"), "xxxx");
        doTestAllMatches(anyOf("xy"), "xyyx");
        doTestAllMatches(anyOf("CharMatcher"), "ChMa");
        doTestAllMatches(inRange('m', 'p'), "mom");
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Feb 21 18:32:41 GMT 2024
    - 30.1K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/base/CharMatcherTest.java

      }
    
      public void testAllMatches() {
        doTestAllMatches(CharMatcher.any(), "blah");
        doTestAllMatches(isNot('a'), "bcde");
        doTestAllMatches(is('a'), "aaaa");
        doTestAllMatches(noneOf("CharMatcher"), "zxqy");
        doTestAllMatches(anyOf("x"), "xxxx");
        doTestAllMatches(anyOf("xy"), "xyyx");
        doTestAllMatches(anyOf("CharMatcher"), "ChMa");
        doTestAllMatches(inRange('m', 'p'), "mom");
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Feb 21 18:32:41 GMT 2024
    - 30.1K bytes
    - Viewed (0)
Back to top