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

/external/webkit/Source/WebCore/platform/
H A DLinkHash.cpp167 static inline bool matchLetter(UChar c, UChar lowercaseLetter) function
176 if (!matchLetter(characters[0], 'h')
177 || !matchLetter(characters[1], 't')
178 || !matchLetter(characters[2], 't')
179 || !matchLetter(characters[3], 'p'))
182 || (matchLetter(characters[4], 's') && characters[5] == ':')))
H A DKURL.cpp1088 static inline bool matchLetter(char c, char lowercaseLetter) function in namespace:WebCore
1196 && matchLetter(url[0], 'f')
1197 && matchLetter(url[1], 'i')
1198 && matchLetter(url[2], 'l')
1199 && matchLetter(url[3], 'e');
1201 m_protocolInHTTPFamily = matchLetter(url[0], 'h')
1202 && matchLetter(url[1], 't')
1203 && matchLetter(url[2], 't')
1204 && matchLetter(url[3], 'p')
1205 && (url[4] == ':' || (matchLetter(ur
[all...]

Completed in 78 milliseconds