Searched defs:stripLeadingAndTrailingHTMLSpaces (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLParserIdioms.cpp41 static String stripLeadingAndTrailingHTMLSpaces(String string, const CharType* characters, unsigned length) function in namespace:blink
67 String stripLeadingAndTrailingHTMLSpaces(const String& string) function in namespace:blink
75 return stripLeadingAndTrailingHTMLSpaces<LChar>(string, string.characters8(), length);
77 return stripLeadingAndTrailingHTMLSpaces<UChar>(string, string.characters16(), length);
348 return WTF::TextEncoding(stripLeadingAndTrailingHTMLSpaces(charset));
H A DHTMLParserIdioms.h40 String stripLeadingAndTrailingHTMLSpaces(const String&);
42 String stripLeadingAndTrailingHTMLSpaces(const Vector<UChar, inlineCapacity>& vector) function in namespace:blink
44 return stripLeadingAndTrailingHTMLSpaces(StringImpl::create8BitIfPossible(vector));

Completed in 187 milliseconds