Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 880 for character (0.14 sec)

  1. android/guava/src/com/google/common/escape/UnicodeEscaper.java

       * is guaranteed to be in the range {@code 0 <= cp <= Character#MAX_CODE_POINT}.
       *
       * <p>If an empty array is returned, this effectively strips the input character from the
       * resulting text.
       *
       * <p>If the character does not need to be escaped, this method should return {@code null}, rather
       * than an array containing the character representation of the code point. This enables the
    Registered: 2024-06-12 16:38
    - Last Modified: 2022-01-18 20:55
    - 13.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/escape/UnicodeEscaper.java

       * is guaranteed to be in the range {@code 0 <= cp <= Character#MAX_CODE_POINT}.
       *
       * <p>If an empty array is returned, this effectively strips the input character from the
       * resulting text.
       *
       * <p>If the character does not need to be escaped, this method should return {@code null}, rather
       * than an array containing the character representation of the code point. This enables the
    Registered: 2024-06-12 16:38
    - Last Modified: 2022-01-18 20:55
    - 13.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/escape/Escapers.java

        private final Map<Character, String> replacementMap = new HashMap<>();
        private char safeMin = Character.MIN_VALUE;
        private char safeMax = Character.MAX_VALUE;
        @CheckForNull private String unsafeReplacement = null;
    
        // The constructor is exposed via the builder() method above.
        private Builder() {}
    
        /**
         * Sets the safe range of characters for the escaper. Characters in this range that have no
    Registered: 2024-06-12 16:38
    - Last Modified: 2023-04-26 20:07
    - 10.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/Ascii.java

      /**
       * Substitute: A character that may be substituted for a character which is determined to be
       * invalid or in error.
       *
       * @since 8.0
       */
      public static final byte SUB = 26;
    
      /**
       * Escape: A control character intended to provide code extension (supplementary characters) in
       * general information interchange. The Escape character itself is a prefix affecting the
    Registered: 2024-06-12 16:38
    - Last Modified: 2021-07-19 15:43
    - 21.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/escape/Escapers.java

        private final Map<Character, String> replacementMap = new HashMap<>();
        private char safeMin = Character.MIN_VALUE;
        private char safeMax = Character.MAX_VALUE;
        @CheckForNull private String unsafeReplacement = null;
    
        // The constructor is exposed via the builder() method above.
        private Builder() {}
    
        /**
         * Sets the safe range of characters for the escaper. Characters in this range that have no
    Registered: 2024-06-12 16:38
    - Last Modified: 2023-04-26 20:07
    - 10.5K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/TableCollectionTest.java

        abstract Table<String, Integer, Character> createTable();
    
        @Override
        @SuppressWarnings("unchecked")
        public Cell<String, Integer, Character>[] createArray(int length) {
          return (Cell<String, Integer, Character>[]) new Cell<?, ?, ?>[length];
        }
    
        @Override
        public List<Cell<String, Integer, Character>> order(
            List<Cell<String, Integer, Character>> insertionOrder) {
    Registered: 2024-06-12 16:38
    - Last Modified: 2024-02-19 20:34
    - 35.3K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/graph/TraverserTest.java

        private final SuccessorsFunction<Character> delegate;
        final Multiset<Character> requestedNodes = HashMultiset.create();
    
        RequestSavingGraph(SuccessorsFunction<Character> delegate) {
          this.delegate = checkNotNull(delegate);
        }
    
        @Override
        public Iterable<? extends Character> successors(Character node) {
          requestedNodes.add(node);
    Registered: 2024-06-12 16:38
    - Last Modified: 2023-09-06 17:04
    - 47.5K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/graph/TraverserTest.java

        private final SuccessorsFunction<Character> delegate;
        final Multiset<Character> requestedNodes = HashMultiset.create();
    
        RequestSavingGraph(SuccessorsFunction<Character> delegate) {
          this.delegate = checkNotNull(delegate);
        }
    
        @Override
        public Iterable<? extends Character> successors(Character node) {
          requestedNodes.add(node);
    Registered: 2024-06-12 16:38
    - Last Modified: 2023-09-06 17:04
    - 47.5K bytes
    - Viewed (0)
  9. src/strconv/quote.go

    }
    
    // UnquoteChar decodes the first character or byte in the escaped string
    // or character literal represented by the string s.
    // It returns four values:
    //
    //  1. value, the decoded Unicode code point or byte value;
    //  2. multibyte, a boolean indicating whether the decoded character requires a multibyte UTF-8 representation;
    //  3. tail, the remainder of the string after the character; and
    Registered: 2024-06-12 16:32
    - Last Modified: 2024-04-04 14:21
    - 16.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/Ascii.java

      /**
       * Substitute: A character that may be substituted for a character which is determined to be
       * invalid or in error.
       *
       * @since 8.0
       */
      public static final byte SUB = 26;
    
      /**
       * Escape: A control character intended to provide code extension (supplementary characters) in
       * general information interchange. The Escape character itself is a prefix affecting the
    Registered: 2024-06-12 16:38
    - Last Modified: 2021-07-19 15:43
    - 21.6K bytes
    - Viewed (0)
Back to top