Searched refs:isASCIIAlpha (Results 1 - 15 of 15) sorted by relevance

/external/webkit/Tools/DumpRenderTree/chromium/
H A DMockSpellCheck.cpp46 static bool isNotASCIIAlpha(UChar ch) { return !isASCIIAlpha(ch); }
74 int wordOffset = stringText.find(isASCIIAlpha);
/external/webkit/Source/JavaScriptCore/wtf/
H A DASCIICType.h54 inline bool isASCIIAlpha(char c) { return (c | 0x20) >= 'a' && (c | 0x20) <= 'z'; } function in namespace:WTF
55 inline bool isASCIIAlpha(unsigned short c) { return (c | 0x20) >= 'a' && (c | 0x20) <= 'z'; } function in namespace:WTF
57 inline bool isASCIIAlpha(wchar_t c) { return (c | 0x20) >= 'a' && (c | 0x20) <= 'z'; } function in namespace:WTF
59 inline bool isASCIIAlpha(int c) { return (c | 0x20) >= 'a' && (c | 0x20) <= 'z'; } function in namespace:WTF
60 inline bool isASCIIAlpha(unsigned c) { return (c | 0x20) >= 'a' && (c | 0x20) <= 'z'; } function in namespace:WTF
166 using WTF::isASCIIAlpha;
/external/webkit/Source/WebCore/platform/text/android/
H A DHyphenationAndroid.cpp86 if (!isASCIIAlpha(ch)) {
/external/webkit/Source/WebCore/loader/
H A DFTPDirectoryParser.cpp214 else if (isASCIIAlpha(*p)) /* 'i'/'up' or unknown "fact" (property) */
292 !isASCIIDigit(p[pos]) && !isASCIIAlpha(p[pos]))
294 else if (isASCIIAlpha(p[pos]) && p[pos] != toASCIIUpper(p[pos]))
310 p[pos] != '~' && !isASCIIDigit(p[pos]) && !isASCIIAlpha(p[pos]))
312 else if (isASCIIAlpha(p[pos]) && p[pos] != toASCIIUpper(p[pos]))
387 *p != '~' && !isASCIIDigit(*p) && !isASCIIAlpha(*p))
407 *p != '~' && !isASCIIDigit(*p) && !isASCIIAlpha(*p))
409 else if (isASCIIAlpha(*p) && *p != toASCIIUpper(*p))
661 if (isASCIIAlpha(*p) && toASCIIUpper(*p) != *p)
1096 && toklen[pos+1] == 3 && isASCIIAlpha(*token
[all...]
/external/webkit/Source/WebCore/wml/
H A DWMLVariables.cpp40 return WTF::isASCIIAlpha(character)
46 return WTF::isASCIIAlpha(character)
H A DWMLInputElement.cpp483 ok = !WTF::isASCIIAlpha(inChar) && WTF::isASCIIPrintable(inChar);
/external/webkit/Source/WebCore/storage/
H A DIDBKeyPath.cpp115 return isASCIIAlpha(c) || (c == '_') || (c == '$');
/external/webkit/Source/JavaScriptCore/yarr/
H A DYarrParser.h388 if (inCharacterClass ? WTF::isASCIIAlphanumeric(control) || (control == '_') : WTF::isASCIIAlpha(control)) {
H A DYarrPattern.cpp70 if (m_isCaseInsensitive && isASCIIAlpha(ch)) {
321 if (m_isCaseInsensitive && isASCIIAlpha(characterNext)) {
919 if (m_pattern.m_ignoreCase && isASCIIAlpha(character)) {
H A DYarrJIT.cpp1282 if (m_pattern.m_ignoreCase && isASCIIAlpha(ch)) {
1302 if (isASCIIAlpha(ch1))
1304 if (isASCIIAlpha(ch2))
1327 if (m_pattern.m_ignoreCase && isASCIIAlpha(ch)) {
1351 if (m_pattern.m_ignoreCase && isASCIIAlpha(ch)) {
1402 if (m_pattern.m_ignoreCase && isASCIIAlpha(ch)) {
/external/webkit/Source/WebCore/dom/
H A DInputElement.cpp338 ok = !isASCIIAlpha(inChar) && isASCIIPrintable(inChar);
H A DDocument.cpp3831 if (!(isASCIIAlpha(c) || c == ':' || c == '_'))
/external/webkit/Source/WebCore/page/
H A DContentSecurityPolicy.cpp309 if (!skipExactly<isASCIIAlpha>(position, end))
/external/webkit/Source/JavaScriptCore/wtf/text/
H A DWTFString.cpp786 if (isASCIIAlpha(c)) {
/external/webkit/Source/WebCore/css/
H A DCSSParser.cpp6690 if (p == end || !(p[0] == '_' || p[0] >= 128 || isASCIIAlpha(p[0])))

Completed in 312 milliseconds