Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for iso (0.13 sec)

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

        return JavaLowerCase.INSTANCE;
      }
    
      /**
       * Determines whether a character is an ISO control character as specified by {@link
       * Character#isISOControl(char)}.
       *
       * <p>All ISO control codes are on the BMP and thus supported by this API.
       *
       * @since 19.0 (since 1.0 as constant {@code JAVA_ISO_CONTROL})
       */
      public static CharMatcher javaIsoControl() {
        return JavaIsoControl.INSTANCE;
      }
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 53.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/CharMatcher.java

        return JavaLowerCase.INSTANCE;
      }
    
      /**
       * Determines whether a character is an ISO control character as specified by {@link
       * Character#isISOControl(char)}.
       *
       * <p>All ISO control codes are on the BMP and thus supported by this API.
       *
       * @since 19.0 (since 1.0 as constant {@code JAVA_ISO_CONTROL})
       */
      public static CharMatcher javaIsoControl() {
        return JavaIsoControl.INSTANCE;
      }
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/hash/HashTestUtils.java

        assertEquals(hashFunction.hashLong(l), hashFunction.newHasher().putLong(l).hash());
      }
    
      private static final ImmutableSet<Charset> CHARSETS =
          ImmutableSet.of(
              Charsets.ISO_8859_1,
              Charsets.US_ASCII,
              Charsets.UTF_16,
              Charsets.UTF_16BE,
              Charsets.UTF_16LE,
              Charsets.UTF_8);
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Oct 10 19:45:10 GMT 2022
    - 25.3K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/io/LittleEndianDataOutputStreamTest.java

        DataInput in = new DataInputStream(new ByteArrayInputStream(data));
    
        /* Read in various values NORMALLY */
        byte[] b = new byte[6];
        in.readFully(b);
        assertEquals("r\u00C9sum\u00C9".getBytes(Charsets.ISO_8859_1), b);
      }
    
      @SuppressWarnings("deprecation") // testing a deprecated method
      public void testWriteBytes_discardHighOrderBytes() throws IOException {
    
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Dec 04 17:37:03 GMT 2017
    - 4.7K bytes
    - Viewed (0)
  5. guava-tests/benchmark/com/google/common/hash/HashStringBenchmark.java

              // Defeat branch predictor for: c < 0x80 ; branch taken 50% of the time.
              return 0x100;
            } else if (userFriendly.matches("(?i)(?:Greek|Cyrillic|European|ISO.?8859)")) {
              // Mostly 2-byte UTF-8 sequences - "European" text
              return 0x800;
            } else if (userFriendly.matches("(?i)(?:Chinese|Han|Asian|BMP)")) {
              // Mostly 3-byte UTF-8 sequences - "Asian" text
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Dec 04 17:37:03 GMT 2017
    - 5.3K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/hash/HashTestUtils.java

        assertEquals(hashFunction.hashLong(l), hashFunction.newHasher().putLong(l).hash());
      }
    
      private static final ImmutableSet<Charset> CHARSETS =
          ImmutableSet.of(
              Charsets.ISO_8859_1,
              Charsets.US_ASCII,
              Charsets.UTF_16,
              Charsets.UTF_16BE,
              Charsets.UTF_16LE,
              Charsets.UTF_8);
    
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Oct 10 19:45:10 GMT 2022
    - 25.3K bytes
    - Viewed (0)
Back to top