Home
last modified time | relevance | path

Searched refs:CharMatcher (Results 1 – 25 of 67) sorted by relevance

123

/dports/java/apache-commons-lang/commons-lang-2.6-src/src/main/java/org/apache/commons/lang/text/
H A DStrMatcher.java37 private static final StrMatcher COMMA_MATCHER = new CharMatcher(',');
41 private static final StrMatcher TAB_MATCHER = new CharMatcher('\t');
45 private static final StrMatcher SPACE_MATCHER = new CharMatcher(' ');
58 private static final StrMatcher SINGLE_QUOTE_MATCHER = new CharMatcher('\'');
62 private static final StrMatcher DOUBLE_QUOTE_MATCHER = new CharMatcher('"');
163 return new CharMatcher(ch); in charMatcher()
177 return new CharMatcher(chars[0]); in charSetMatcher()
193 return new CharMatcher(chars.charAt(0)); in charSetMatcher()
307 static final class CharMatcher extends StrMatcher { class in StrMatcher
316 CharMatcher(char ch) { in CharMatcher() method in StrMatcher.CharMatcher
/dports/devel/libphonenumber/libphonenumber-8.12.39/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/model/
H A DAltFormatSpec.java23 import com.google.common.base.CharMatcher;
39 private static final CharMatcher OPT_DIGIT = CharMatcher.is('*');
40 private static final CharMatcher ANY_DIGIT = CharMatcher.is('X');
41 private static final CharMatcher ALLOWED_TEMPLATE_CHARS = CharMatcher.anyOf("X* ");
H A DFormatSpec.java22 import com.google.common.base.CharMatcher;
286 private static final CharMatcher VALID_TEMPLATE_CHARS =
287 CharMatcher.ascii().and(CharMatcher.javaIsoControl().negate()).and(CharMatcher.isNot('$'));
289 private static final CharMatcher VALID_METACHARS = CharMatcher.anyOf("#@X*{>}\\");
291 private static final CharMatcher SUFFIX_SEPARATOR = CharMatcher.anyOf(". /-$");
563 int endRequired = CharMatcher.isNot(c).indexIn(template, start);
/dports/devel/libphonenumber/libphonenumber-8.12.39/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/table/
H A DCsvParser.java18 import static com.google.common.base.CharMatcher.isNot;
19 import static com.google.common.base.CharMatcher.javaIsoControl;
20 import static com.google.common.base.CharMatcher.whitespace;
24 import com.google.common.base.CharMatcher;
95 private static final CharMatcher NON_WHITESPACE = CharMatcher.whitespace().negate();
97 private static final CharMatcher VALID_DELIMITER_CHAR =
98 NON_WHITESPACE.and(javaIsoControl().negate()).and(isNot(QUOTE)).or(CharMatcher.anyOf(" \t"));
H A DColumn.java18 import static com.google.common.base.CharMatcher.inRange;
19 import static com.google.common.base.CharMatcher.whitespace;
26 import com.google.common.base.CharMatcher;
38 private static final CharMatcher ASCII_LETTER_OR_DIGIT =
40 private static final CharMatcher LOWER_ASCII_LETTER_OR_DIGIT =
42 private static final CharMatcher LOWER_UNDERSCORE =
43 CharMatcher.is('_').or(LOWER_ASCII_LETTER_OR_DIGIT);
/dports/devel/libphonenumber/libphonenumber-8.12.39/migrator/src/main/java/com/google/phonenumbers/migrator/
H A DMigrationFactory.java18 import com.google.common.base.CharMatcher;
165 CharMatcher matcher = CharMatcher.anyOf("-+()").or(CharMatcher.whitespace()); in sanitizeNumberString()
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/envoyproxy/protoc-gen-validate/java/pgv-java-validation/src/main/java/io/envoyproxy/pgv/validation/
H A DProtoTypeMap.java165 …if (!CharMatcher.inRange('0', '9').or(CharMatcher.inRange('A', 'Z')).or(CharMatcher.inRange('a', '… in makeInvalidCharactersUnderscores()
178 if (CharMatcher.inRange('0', '9').matches(filechars[i - 1])) { in upcaseAfterNumber()
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/envoyproxy/protoc-gen-validate/java/pgv-java-validation/src/main/java/io/envoyproxy/pgv/validation/
H A DProtoTypeMap.java165 …if (!CharMatcher.inRange('0', '9').or(CharMatcher.inRange('A', 'Z')).or(CharMatcher.inRange('a', '… in makeInvalidCharactersUnderscores()
178 if (CharMatcher.inRange('0', '9').matches(filechars[i - 1])) { in upcaseAfterNumber()
/dports/www/gohugo/hugo-0.91.2/vendor/github.com/envoyproxy/protoc-gen-validate/java/pgv-java-validation/src/main/java/io/envoyproxy/pgv/validation/
H A DProtoTypeMap.java165 …if (!CharMatcher.inRange('0', '9').or(CharMatcher.inRange('A', 'Z')).or(CharMatcher.inRange('a', '… in makeInvalidCharactersUnderscores()
178 if (CharMatcher.inRange('0', '9').matches(filechars[i - 1])) { in upcaseAfterNumber()
/dports/www/tusd/tusd-1.8.0/vendor/github.com/envoyproxy/protoc-gen-validate/java/pgv-java-validation/src/main/java/io/envoyproxy/pgv/validation/
H A DProtoTypeMap.java165 …if (!CharMatcher.inRange('0', '9').or(CharMatcher.inRange('A', 'Z')).or(CharMatcher.inRange('a', '… in makeInvalidCharactersUnderscores()
178 if (CharMatcher.inRange('0', '9').matches(filechars[i - 1])) { in upcaseAfterNumber()
/dports/net/grpcui/grpcui-1.1.0/vendor/github.com/envoyproxy/protoc-gen-validate/java/pgv-java-validation/src/main/java/io/envoyproxy/pgv/validation/
H A DProtoTypeMap.java165 …if (!CharMatcher.inRange('0', '9').or(CharMatcher.inRange('A', 'Z')).or(CharMatcher.inRange('a', '… in makeInvalidCharactersUnderscores()
178 if (CharMatcher.inRange('0', '9').matches(filechars[i - 1])) { in upcaseAfterNumber()
/dports/net/grpcurl/grpcurl-1.8.5/vendor/github.com/envoyproxy/protoc-gen-validate/java/pgv-java-validation/src/main/java/io/envoyproxy/pgv/validation/
H A DProtoTypeMap.java165 …if (!CharMatcher.inRange('0', '9').or(CharMatcher.inRange('A', 'Z')).or(CharMatcher.inRange('a', '… in makeInvalidCharactersUnderscores()
178 if (CharMatcher.inRange('0', '9').matches(filechars[i - 1])) { in upcaseAfterNumber()
/dports/devel/libphonenumber/libphonenumber-8.12.39/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/
H A DDigitSequence.java18 import com.google.common.base.CharMatcher;
34 private static final CharMatcher ASCII_DIGITS = CharMatcher.inRange('0', '9');
/dports/audio/rhvoice/RHVoice-1.2.4/src/third-party/cldr/tools/java/org/unicode/cldr/api/
H A DAttributeKey.java19 import com.google.common.base.CharMatcher;
66 Splitter.on(CharMatcher.whitespace()).omitEmptyStrings();
256 checkArgument(CharMatcher.ascii().matchesAllOf(value), in checkValidLabel()
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/envoyproxy/protoc-gen-validate/java/pgv-java-stub/src/main/java/io/envoyproxy/pgv/
H A DStringValidation.java3 import com.google.common.base.CharMatcher;
97 …boolean validHost = CharMatcher.ascii().matchesAllOf(value) && DomainValidator.getInstance(true).i… in address()
106 if (!CharMatcher.ascii().matchesAllOf(value)) { in hostName()
/dports/www/gohugo/hugo-0.91.2/vendor/github.com/envoyproxy/protoc-gen-validate/java/pgv-java-stub/src/main/java/io/envoyproxy/pgv/
H A DStringValidation.java3 import com.google.common.base.CharMatcher;
97 …boolean validHost = CharMatcher.ascii().matchesAllOf(value) && DomainValidator.getInstance(true).i… in address()
106 if (!CharMatcher.ascii().matchesAllOf(value)) { in hostName()
/dports/www/tusd/tusd-1.8.0/vendor/github.com/envoyproxy/protoc-gen-validate/java/pgv-java-stub/src/main/java/io/envoyproxy/pgv/
H A DStringValidation.java3 import com.google.common.base.CharMatcher;
97 …boolean validHost = CharMatcher.ascii().matchesAllOf(value) && DomainValidator.getInstance(true).i… in address()
106 if (!CharMatcher.ascii().matchesAllOf(value)) { in hostName()
/dports/net/grpcui/grpcui-1.1.0/vendor/github.com/envoyproxy/protoc-gen-validate/java/pgv-java-stub/src/main/java/io/envoyproxy/pgv/
H A DStringValidation.java3 import com.google.common.base.CharMatcher;
97 …boolean validHost = CharMatcher.ascii().matchesAllOf(value) && DomainValidator.getInstance(true).i… in address()
106 if (!CharMatcher.ascii().matchesAllOf(value)) { in hostName()
/dports/net/grpcurl/grpcurl-1.8.5/vendor/github.com/envoyproxy/protoc-gen-validate/java/pgv-java-stub/src/main/java/io/envoyproxy/pgv/
H A DStringValidation.java3 import com.google.common.base.CharMatcher;
97 …boolean validHost = CharMatcher.ascii().matchesAllOf(value) && DomainValidator.getInstance(true).i… in address()
106 if (!CharMatcher.ascii().matchesAllOf(value)) { in hostName()
/dports/lang/gcc11/gcc-11.2.0/libphobos/src/std/regex/internal/
H A Dir.d29 CharMatcher[CodepointSet] matcherCache;
32 @trusted CharMatcher getMatcher(CodepointSet set) in getMatcher()
35 return CharMatcher(set); in getMatcher()
46 return (matcherCache[set] = CharMatcher(set)); in getMatcher()
72 @property CharMatcher wordMatcher() in wordMatcher()
523 public const(CharMatcher)[] matchers; // tables that represent character sets in Regex() local
770 struct CharMatcher {
/dports/lang/gcc10/gcc-10.3.0/libphobos/src/std/regex/internal/
H A Dir.d29 CharMatcher[CodepointSet] matcherCache;
32 @trusted CharMatcher getMatcher(CodepointSet set) in getMatcher()
35 return CharMatcher(set); in getMatcher()
46 return (matcherCache[set] = CharMatcher(set)); in getMatcher()
72 @property CharMatcher wordMatcher() in wordMatcher()
523 public const(CharMatcher)[] matchers; // tables that represent character sets in Regex() local
770 struct CharMatcher {
/dports/lang/gcc11-devel/gcc-11-20211009/libphobos/src/std/regex/internal/
H A Dir.d29 CharMatcher[CodepointSet] matcherCache;
32 @trusted CharMatcher getMatcher(CodepointSet set) in getMatcher()
35 return CharMatcher(set); in getMatcher()
46 return (matcherCache[set] = CharMatcher(set)); in getMatcher()
72 @property CharMatcher wordMatcher() in wordMatcher()
523 public const(CharMatcher)[] matchers; // tables that represent character sets in Regex() local
770 struct CharMatcher {
/dports/devel/avr-gcc/gcc-10.2.0/libphobos/src/std/regex/internal/
H A Dir.d29 CharMatcher[CodepointSet] matcherCache;
32 @trusted CharMatcher getMatcher(CodepointSet set) in getMatcher()
35 return CharMatcher(set); in getMatcher()
46 return (matcherCache[set] = CharMatcher(set)); in getMatcher()
72 @property CharMatcher wordMatcher() in wordMatcher()
523 public const(CharMatcher)[] matchers; // tables that represent character sets in Regex() local
770 struct CharMatcher {
/dports/lang/gcc9-devel/gcc-9-20211007/libphobos/src/std/regex/internal/
H A Dir.d29 CharMatcher[CodepointSet] matcherCache;
32 @trusted CharMatcher getMatcher(CodepointSet set) in getMatcher()
35 return CharMatcher(set); in getMatcher()
46 return (matcherCache[set] = CharMatcher(set)); in getMatcher()
72 @property CharMatcher wordMatcher() in wordMatcher()
523 public const(CharMatcher)[] matchers; // tables that represent character sets in Regex() local
770 struct CharMatcher {
/dports/lang/gcc9/gcc-9.4.0/libphobos/src/std/regex/internal/
H A Dir.d29 CharMatcher[CodepointSet] matcherCache;
32 @trusted CharMatcher getMatcher(CodepointSet set) in getMatcher()
35 return CharMatcher(set); in getMatcher()
46 return (matcherCache[set] = CharMatcher(set)); in getMatcher()
72 @property CharMatcher wordMatcher() in wordMatcher()
523 public const(CharMatcher)[] matchers; // tables that represent character sets in Regex() local
770 struct CharMatcher {

123