Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for javaIsoControl (0.05 sec)

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

          return "CharMatcher.javaLowerCase()";
        }
      }
    
      /** Implementation of {@link #javaIsoControl()}. */
      private static final class JavaIsoControl extends NamedFastMatcher {
    
        static final CharMatcher INSTANCE = new JavaIsoControl();
    
        private JavaIsoControl() {
          super("CharMatcher.javaIsoControl()");
        }
    
        @Override
        public boolean matches(char c) {
    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. guava/src/com/google/common/net/MediaType.java

     * the License.
     */
    
    package com.google.common.net;
    
    import static com.google.common.base.CharMatcher.ascii;
    import static com.google.common.base.CharMatcher.javaIsoControl;
    import static com.google.common.base.MoreObjects.firstNonNull;
    import static com.google.common.base.Preconditions.checkArgument;
    import static com.google.common.base.Preconditions.checkNotNull;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 48K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/net/MediaType.java

     * the License.
     */
    
    package com.google.common.net;
    
    import static com.google.common.base.CharMatcher.ascii;
    import static com.google.common.base.CharMatcher.javaIsoControl;
    import static com.google.common.base.MoreObjects.firstNonNull;
    import static com.google.common.base.Preconditions.checkArgument;
    import static com.google.common.base.Preconditions.checkNotNull;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 48K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/base/CharMatcherTest.java

      @GwtIncompatible // Character.isISOControl
      public void testJavaIsoControl() {
        for (int c = 0; c <= Character.MAX_VALUE; c++) {
          assertEquals(
              "" + c, Character.isISOControl(c), CharMatcher.javaIsoControl().matches((char) c));
        }
      }
    
      // Omitting tests for the rest of the JAVA_* constants as these are defined
      // as extremely straightforward pass-throughs to the JDK methods.
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 30.3K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/base/CharMatcherTest.java

      @GwtIncompatible // Character.isISOControl
      public void testJavaIsoControl() {
        for (int c = 0; c <= Character.MAX_VALUE; c++) {
          assertEquals(
              "" + c, Character.isISOControl(c), CharMatcher.javaIsoControl().matches((char) c));
        }
      }
    
      // Omitting tests for the rest of the JAVA_* constants as these are defined
      // as extremely straightforward pass-throughs to the JDK methods.
    
    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