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

/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLParserIdioms.h41 String stripLeadingAndTrailingHTMLSpaces(const String&);
43 String stripLeadingAndTrailingHTMLSpaces(const Vector<UChar, inlineCapacity>& vector) function in namespace:WebCore
45 return stripLeadingAndTrailingHTMLSpaces(StringImpl::create8BitIfPossible(vector));
H A DHTMLParserIdioms.cpp37 static String stripLeadingAndTrailingHTMLSpaces(String string, const CharType* characters, unsigned length) function in namespace:WebCore
63 String stripLeadingAndTrailingHTMLSpaces(const String& string) function in namespace:WebCore
71 return stripLeadingAndTrailingHTMLSpaces<LChar>(string, string.characters8(), length);
73 return stripLeadingAndTrailingHTMLSpaces<UChar>(string, string.characters16(), length);

Completed in 79 milliseconds