Searched defs:isPathSegmentEndChar (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/WebCore/platform/
H A DKURL.cpp231 static inline bool isPathSegmentEndChar(char c) { return characterClassTable[static_cast<unsigned char>(c)] & PathSegmentEndChar; } function in namespace:WebCore
232 static inline bool isPathSegmentEndChar(UChar c) { return c <= 0xff && (characterClassTable[c] & PathSegmentEndChar); } function in namespace:WebCore
509 if (isPathSegmentEndChar(relStringPos[1])) {
515 } else if (relStringPos[1] == '.' && isPathSegmentEndChar(relStringPos[2])) {
1235 } else if (url[userEnd] == '[' || isPathSegmentEndChar(url[userEnd])) {
1279 if (!isPathSegmentEndChar(url[portEnd])) {
1657 if (c == ':' || (isPathSegmentEndChar(c) && c != 0)) {

Completed in 18 milliseconds