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

  /external/webkit/Source/JavaScriptCore/wtf/
ASCIICType.h 111 Statistics from a run of Apple's page load test for callers of isASCIISpace:
123 inline bool isASCIISpace(char c) { return c <= ' ' && (c == ' ' || (c <= 0xD && c >= 0x9)); }
124 inline bool isASCIISpace(unsigned short c) { return c <= ' ' && (c == ' ' || (c <= 0xD && c >= 0x9)); }
126 inline bool isASCIISpace(wchar_t c) { return c <= ' ' && (c == ' ' || (c <= 0xD && c >= 0x9)); }
128 inline bool isASCIISpace(int c) { return c <= ' ' && (c == ' ' || (c <= 0xD && c >= 0x9)); }
129 inline bool isASCIISpace(unsigned c) { return c <= ' ' && (c == ' ' || (c <= 0xD && c >= 0x9)); }
173 using WTF::isASCIISpace;
DateMath.cpp 526 if (!isASCIISpace(ch)) {
751 if (isASCIISpace(*dateString) || *dateString == '(') {
827 while (*dateString && *dateString != '-' && *dateString != ',' && !isASCIISpace(*dateString))
834 if (*dateString != '-' && *dateString != '/' && *dateString != ',' && !isASCIISpace(*dateString))
857 if (!(isASCIISpace(*newPosStr) || *newPosStr == ',')) {
895 if (*dateString && *dateString != ':' && !isASCIISpace(*dateString))
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLIFrameElement.cpp 81 while (start < length && isASCIISpace(characters[start]))
86 while (end < length && !isASCIISpace(characters[end]))
  /external/webkit/Source/WebCore/page/
ContentSecurityPolicy.cpp 47 return isASCIISpace(c) || (c >= 0x21 && c <= 0x7e); // Whitespace + VCHAR
52 return !isASCIISpace(c);
206 skipWhile<isASCIISpace>(position, end);
225 ASSERT(position == end || isASCIISpace(*position));
444 skipWhile<isASCIISpace>(position, end);
574 skipWhile<isASCIISpace>(position, end);
588 if (!skipExactly<isASCIISpace>(position, end))
591 skipWhile<isASCIISpace>(position, end);
  /external/webkit/Source/WebCore/platform/text/android/
HyphenationAndroid.cpp 88 if (isASCIISpace(ch) && !wordLength)
  /external/webkit/Source/WebCore/storage/
IDBKeyPath.cpp 79 while (m_ptr < m_end && isASCIISpace(*m_ptr))
  /external/webkit/Source/JavaScriptCore/wtf/text/
StringImpl.h 368 // Use isASCIISpace() for basic Latin-1.
370 return c <= 0x7F ? WTF::isASCIISpace(c) : WTF::Unicode::direction(c) == WTF::Unicode::WhiteSpaceNeutral;
StringImpl.cpp 165 if (!isASCIISpace(m_data[i]))
  /external/webkit/Source/WebCore/dom/
SelectElement.cpp     [all...]
  /external/webkit/Source/WebCore/rendering/
RenderBlockLineLayout.cpp 290 while (isASCIISpace(renderText->characters()[pos])) {
    [all...]
  /external/webkit/Source/WebCore/html/canvas/
WebGLRenderingContext.cpp 239 if (WTF::isASCIISpace(c)) {
    [all...]

Completed in 329 milliseconds