- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 1,286 for character (0.15 sec)
-
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) -
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) -
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) -
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) -
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) -
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) -
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) -
android/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.7K bytes - Viewed (0) -
android/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) -
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)