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

/macosx-10.9.5/WebCore-7537.78.1/xml/parser/
H A DCharacterReferenceParserInlines.h34 inline bool isHexDigit(UChar cc) function in namespace:WebCore
105 if (isHexDigit(cc)) {
114 if (isHexDigit(cc)) {
/macosx-10.9.5/CF-855.17/
H A DCFURL.inc.h324 } else if (ch == '%' && idx + 2 < end && isHexDigit(characterArray[idx + 1]) && isHexDigit(characterArray[idx+2])) {
H A DCFURLAccess.c416 static BOOL isHexDigit(char c) function
454 if (srcBuffer[i] == '%' && end > i + 2 && isHexDigit(srcBuffer[i+1]) && isHexDigit(srcBuffer[i+2])) {
H A DCFURL.c497 CF_INLINE Boolean isHexDigit(UniChar ch) { function
1968 if ( isHexDigit(*chPtr) ) {
/macosx-10.9.5/groff-38/groff/src/preproc/html/
H A Dpushback.cpp225 * isHexDigit - returns TRUE if the character, ch, is a hex digit.
229 static int isHexDigit (char ch)
/macosx-10.9.5/WebCore-7537.78.1/platform/mac/
H A DWebCoreNSURLExtras.mm535 static BOOL isHexDigit(char c)
845 if (c == '%' && (i + 1 < length && isHexDigit(p[i + 1])) && i + 2 < length && isHexDigit(p[i + 2])) {
921 } else if (c == '%' && (i + 1 < length && isHexDigit(p[i + 1])) && i + 2 < length && isHexDigit(p[i + 2])) {
/macosx-10.9.5/xnu-2422.115.4/libkern/c++/
H A DOSUnserialize.y227 #define isHexDigit(c) (isDigit(c) || isAlphaDigit(c))
366 while(isHexDigit(c)) {
401 if (!isHexDigit(c)) break;
410 if (!isHexDigit(c)) break;
H A DOSUnserializeXML.y356 #define isHexDigit(c) (isDigit(c) || isAlphaDigit(c))
586 while(isHexDigit(c)) {
/macosx-10.9.5/IOKitUser-907.100.13/
H A DIOCFUnserialize.yacc274 #define isHexDigit(c) (isDigit(c) || isAlphaDigit(c))
504 while(isHexDigit(c)) {

Completed in 159 milliseconds