Home
last modified time | relevance | path

Searched refs:lowMask (Results 1 – 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/sun/nio/fs/
DUnixUriUtils.java135 private static long lowMask(String chars) { in lowMask() method in UnixUriUtils
160 private static long lowMask(char first, char last) { in lowMask() method in UnixUriUtils
181 private static boolean match(char c, long lowMask, long highMask) { in match() argument
183 return ((1L << c) & lowMask) != 0; in match()
202 private static final long L_DIGIT = lowMask('0', '9');
227 private static final long L_MARK = lowMask("-_.!~*'()");
237 = L_UNRESERVED | lowMask(":@&=+$,");
242 private static final long L_PATH = L_PCHAR | lowMask(";/");
/libcore/ojluni/src/main/java/sun/net/www/
DParseUtil.java444 private static String quote(String s, long lowMask, long highMask) { in quote() argument
447 boolean allowNonASCII = ((lowMask & L_ESCAPED) != 0); in quote()
451 if (!match(c, lowMask, highMask) && !isEscaped(s, i)) { in quote()
519 private static boolean match(char c, long lowMask, long highMask) { in match() argument
521 return ((1L << c) & lowMask) != 0; in match()
545 private static long lowMask(char first, char last) { in lowMask() method in ParseUtil
555 private static long lowMask(String chars) { in lowMask() method in ParseUtil
594 private static final long L_DIGIT = lowMask('0', '9');
624 private static final long L_MARK = lowMask("-_.!~*'()");
634 private static final long L_RESERVED = lowMask(";/?:@&=+$,[]");
[all …]
/libcore/ojluni/src/main/java/java/net/
DURI.java2491 private static long lowMask(String chars) { in lowMask() method
2516 private static long lowMask(char first, char last) { in lowMask() method
2537 private static boolean match(char c, long lowMask, long highMask) { in match() argument
2541 return ((1L << c) & lowMask) != 0; in match()
2552 private static final long L_DIGIT = lowMask('0', '9');
2582 private static final long L_MARK = lowMask("-_.!~*'()");
2592 private static final long L_RESERVED = lowMask(";/?:@&=+$,[]");
2607 = L_UNRESERVED | L_ESCAPED | lowMask(":@&=+$,");
2612 private static final long L_PATH = L_PCHAR | lowMask(";/");
2616 private static final long L_DASH = lowMask("-");
[all …]