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

  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLDimension.cpp 46 while (lastParsedIndex < endOfCurrentToken && isASCIISpace((characters[lastParsedIndex])))
67 while (position < endOfCurrentToken && (isASCIIDigit(characters[position]) || isASCIISpace(characters[position]))) {
82 while (position < endOfCurrentToken && isASCIISpace(characters[position]))
TypeAhead.cpp 53 if (string[i] != noBreakSpace && (string[i] <= 0x7F ? !isASCIISpace(string[i]) : (direction(string[i]) != WhiteSpaceNeutral)))
  /external/chromium_org/third_party/WebKit/Source/wtf/
ASCIICType.h 87 Statistics from a run of Apple's page load test for callers of isASCIISpace:
99 template<typename CharType> inline bool isASCIISpace(CharType c)
176 using WTF::isASCIISpace;
DateMath.cpp 501 if (!isASCIISpace(ch)) {
775 if (isASCIISpace(*dateString) || *dateString == '(') {
853 while (*dateString && *dateString != '-' && *dateString != ',' && !isASCIISpace(*dateString))
860 if (*dateString != '-' && *dateString != '/' && *dateString != ',' && !isASCIISpace(*dateString))
883 if (!(isASCIISpace(*newPosStr) || *newPosStr == ',')) {
921 if (*dateString && *dateString != ':' && !isASCIISpace(*dateString))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
ContentSecurityPolicy.cpp 68 return isASCIISpace(c) || (c >= 0x21 && c <= 0x7e); // Whitespace + VCHAR
78 return !isASCIISpace(c);
98 return !isASCIISpace(c);
108 return !isASCIISpace(c) && c != '/';
202 skipWhile<isASCIISpace>(begin, end);
209 skipWhile<isASCIISpace>(position, end);
372 skipWhile<isASCIISpace>(position, end);
396 ASSERT(position == end || isASCIISpace(*position));
733 skipWhile<isASCIISpace>(position, end);
773 ASSERT(position == end || isASCIISpace(*position))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
PopupListBox.cpp 302 && (string[i] <= 0x7F ? !isASCIISpace(string[i]) : (direction(string[i]) != WhiteSpaceNeutral)))
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
StringImpl.h 712 // Use isASCIISpace() for basic Latin-1.
714 return c <= 0x7F ? WTF::isASCIISpace(c) : WTF::Unicode::direction(c) == WTF::Unicode::WhiteSpaceNeutral;
StringImpl.cpp 415 if (!isASCIISpace(c))
424 if (!isASCIISpace(c))
    [all...]
WTFString.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderBlockLineLayout.cpp 588 while (isASCIISpace(characters[pos])) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLRenderingContext.cpp 387 if (WTF::isASCIISpace(c)) {
    [all...]

Completed in 578 milliseconds