HomeSort by relevance Sort by last modified time
    Searched refs:isSchemeFirstChar (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/platform/
KURL.cpp 224 static inline bool isSchemeFirstChar(char c) { return characterClassTable[static_cast<unsigned char>(c)] & SchemeFirstChar; }
225 static inline bool isSchemeFirstChar(UChar c) { return c <= 0xff && (characterClassTable[c] & SchemeFirstChar); }
282 ASSERT(!url.length() || isSchemeFirstChar(url[0]));
406 if (isSchemeFirstChar(*p)) {
    [all...]
KURLGoogle.cpp 126 static inline bool isSchemeFirstChar(char c)
133 return isSchemeFirstChar(c) || (c >= '0' && c <= '9') || c == '.' || c == '-' || c == '*';
142 if (!isSchemeFirstChar(protocol[0]))
    [all...]

Completed in 21 milliseconds