Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,423 for character (0.19 sec)

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

       * Returns the index of the first matching BMP character in a character sequence, or {@code -1} if
       * no matching character is present.
       *
       * <p>The default implementation iterates over the sequence in forward order calling {@link
       * #matches} for each character.
       *
       * @param sequence the character sequence to examine from the beginning
       * @return an index, or {@code -1} if no character matches
       */
    Registered: 2024-06-12 16:38
    - Last Modified: 2024-02-09 15:49
    - 53.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/escape/ArrayBasedCharEscaper.java

      // The first character in the safe range.
      private final char safeMin;
      // The last character in the safe range.
      private final char safeMax;
    
      /**
       * Creates a new ArrayBasedCharEscaper instance with the given replacement map and specified safe
       * range. If {@code safeMax < safeMin} then no characters are considered safe.
       *
    Registered: 2024-06-12 16:38
    - Last Modified: 2022-01-18 20:55
    - 6.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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. src/unicode/graphic.go

    const (
    	pC     = 1 << iota // a control character.
    	pP                 // a punctuation character.
    	pN                 // a numeral.
    	pS                 // a symbolic character.
    	pZ                 // a spacing character.
    	pLu                // an upper-case letter.
    	pLl                // a lower-case letter.
    	pp                 // a printable character according to Go's definition.
    Registered: 2024-06-12 16:32
    - Last Modified: 2023-11-06 20:02
    - 4.4K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/primitives/CharArrayAsListTest.java

          Character[] suffix = {(char) 86, (char) 99};
          Character[] all = concat(concat(prefix, elements), suffix);
          return asList(all).subList(2, elements.length + 2);
        }
      }
    
      private static Character[] concat(Character[] left, Character[] right) {
        Character[] result = new Character[left.length + right.length];
        System.arraycopy(left, 0, result, 0, left.length);
    Registered: 2024-06-12 16:38
    - Last Modified: 2023-06-01 09:32
    - 5.7K bytes
    - Viewed (0)
  8. 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)
  9. src/regexp/syntax/doc.go

    Single characters:
    
    	.              any character, possibly including newline (flag s=true)
    	[xyz]          character class
    	[^xyz]         negated character class
    	\d             Perl character class
    	\D             negated Perl character class
    	[[:alpha:]]    ASCII character class
    	[[:^alpha:]]   negated ASCII character class
    	\pN            Unicode character class (one-letter name)
    Registered: 2024-06-12 16:32
    - Last Modified: 2024-03-19 11:21
    - 5.4K bytes
    - Viewed (0)
  10. guava/src/com/google/common/escape/ArrayBasedUnicodeEscaper.java

       *
       * @param replacementMap a map of characters to their escaped representations
       * @param safeMin the lowest character value in the safe range
       * @param safeMax the highest character value in the safe range
       * @param unsafeReplacement the default replacement for unsafe characters or null if no default
       *     replacement is required
       */
      protected ArrayBasedUnicodeEscaper(
          Map<Character, String> replacementMap,
          int safeMin,
    Registered: 2024-06-12 16:38
    - Last Modified: 2022-10-10 19:45
    - 8.5K bytes
    - Viewed (0)
Back to top