Searched refs:isHexDigit (Results 1 - 5 of 5) sorted by relevance

/external/nist-sip/java/gov/nist/core/
H A DHostNameParser.java108 if (LexerCore.isHexDigit(la) || la == '.' || la == ':'
149 if (LexerCore.isHexDigit(la) || la == '.'
H A DStringTokenizer.java75 public static boolean isHexDigit(char ch) { method in class:StringTokenizer
/external/webkit/Source/WebCore/html/parser/
H A DHTMLEntityParser.cpp78 inline bool isHexDigit(UChar cc) function in namespace:WebCore::__anon13223
155 if (isHexDigit(cc)) {
164 if (isHexDigit(cc)) {
/external/webkit/Source/WebKit/mac/Misc/
H A DWebNSURLExtras.mm138 static BOOL isHexDigit(char c)
530 if (c == '%' && (i + 1 < length && isHexDigit(p[i + 1])) && i + 2 < length && isHexDigit(p[i + 2])) {
910 } else if (c == '%' && (i + 1 < length && isHexDigit(p[i + 1])) && i + 2 < length && isHexDigit(p[i + 2])) {
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
H A DLSSerializerImpl.java1473 if (token.length() >= 2 && isHexDigit(token.charAt(0)) &&
1474 isHexDigit(token.charAt(1))) {
1489 private static boolean isHexDigit(char c) { method in class:LSSerializerImpl

Completed in 146 milliseconds