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

  /external/webkit/JavaScriptCore/wtf/
ASCIICType.h 104 Statistics from a run of Apple's page load test for callers of isASCIISpace:
116 inline bool isASCIISpace(char c) { return c <= ' ' && (c == ' ' || (c <= 0xD && c >= 0x9)); }
117 inline bool isASCIISpace(unsigned short c) { return c <= ' ' && (c == ' ' || (c <= 0xD && c >= 0x9)); }
119 inline bool isASCIISpace(wchar_t c) { return c <= ' ' && (c == ' ' || (c <= 0xD && c >= 0x9)); }
121 inline bool isASCIISpace(int c) { return c <= ' ' && (c == ' ' || (c <= 0xD && c >= 0x9)); }
160 using WTF::isASCIISpace;
DateMath.cpp 518 if (!isASCIISpace(ch)) {
587 if (isASCIISpace(*dateString) || *dateString == '(') {
663 while (*dateString && *dateString != '-' && *dateString != ',' && !isASCIISpace(*dateString))
670 if (*dateString != '-' && *dateString != '/' && *dateString != ',' && !isASCIISpace(*dateString))
693 if (!(isASCIISpace(*newPosStr) || *newPosStr == ',')) {
731 if (*dateString && *dateString != ':' && !isASCIISpace(*dateString))
  /external/webkit/WebCore/html/
HTMLIFrameElement.cpp 81 while (start < length && isASCIISpace(characters[start]))
86 while (end < length && !isASCIISpace(characters[end]))
HTMLTokenizer.cpp 398 if (!m_scriptCodeResync && !state.escaped() && !src.escaped() && (ch == '>' || ch == '/' || isASCIISpace(ch)) &&
    [all...]
  /external/webkit/JavaScriptCore/runtime/
UString.cpp 371 if (isASCIISpace(c) && tolerateEmptyString)
384 while (isASCIISpace(*c))
441 while (isASCIISpace(*c))
LiteralParser.cpp 40 while (m_ptr < m_end && isASCIISpace(*m_ptr))
  /external/webkit/WebCore/platform/text/
StringImpl.h 222 // Use isASCIISpace() for basic Latin-1.
224 return c <= 0x7F ? WTF::isASCIISpace(c) : WTF::Unicode::direction(c) == WTF::Unicode::WhiteSpaceNeutral;
StringImpl.cpp 137 if (!isASCIISpace(m_data[i]))
  /external/webkit/WebCore/dom/
SelectElement.cpp     [all...]

Completed in 169 milliseconds