Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for BreakingWhitespace (0.06 sec)

  1. android/guava/src/com/google/common/base/CharMatcher.java

            table.set(TABLE.charAt(i));
          }
        }
      }
    
      /** Implementation of {@link #breakingWhitespace()}. */
      private static final class BreakingWhitespace extends CharMatcher {
    
        static final CharMatcher INSTANCE = new BreakingWhitespace();
    
        @Override
        public boolean matches(char c) {
          switch (c) {
            case '\t':
            case '\n':
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 53.9K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/base/CharMatcherTest.java

     * limitations under the License.
     */
    
    package com.google.common.base;
    
    import static com.google.common.base.CharMatcher.anyOf;
    import static com.google.common.base.CharMatcher.breakingWhitespace;
    import static com.google.common.base.CharMatcher.forPredicate;
    import static com.google.common.base.CharMatcher.inRange;
    import static com.google.common.base.CharMatcher.is;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 30.3K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/base/CharMatcherTest.java

     * limitations under the License.
     */
    
    package com.google.common.base;
    
    import static com.google.common.base.CharMatcher.anyOf;
    import static com.google.common.base.CharMatcher.breakingWhitespace;
    import static com.google.common.base.CharMatcher.forPredicate;
    import static com.google.common.base.CharMatcher.inRange;
    import static com.google.common.base.CharMatcher.is;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 30.4K bytes
    - Viewed (0)
Back to top