HomeSort by relevance Sort by last modified time
    Searched defs:stripLeadingAndTrailingHTMLSpaces (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLParserIdioms.cpp 41 static String stripLeadingAndTrailingHTMLSpaces(String string, const CharType* characters, unsigned length)
67 String stripLeadingAndTrailingHTMLSpaces(const String& string)
75 return stripLeadingAndTrailingHTMLSpaces<LChar>(string, string.characters8(), length);
77 return stripLeadingAndTrailingHTMLSpaces<UChar>(string, string.characters16(), length);
348 return WTF::TextEncoding(stripLeadingAndTrailingHTMLSpaces(charset));
HTMLParserIdioms.h 40 String stripLeadingAndTrailingHTMLSpaces(const String&);
42 String stripLeadingAndTrailingHTMLSpaces(const Vector<UChar, inlineCapacity>& vector)
44 return stripLeadingAndTrailingHTMLSpaces(StringImpl::create8BitIfPossible(vector));

Completed in 307 milliseconds