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.h 43 String stripLeadingAndTrailingHTMLSpaces(const String&);
45 String stripLeadingAndTrailingHTMLSpaces(const Vector<UChar, inlineCapacity>& vector)
47 return stripLeadingAndTrailingHTMLSpaces(StringImpl::create8BitIfPossible(vector));
HTMLParserIdioms.cpp 39 static String stripLeadingAndTrailingHTMLSpaces(String string, CharType characters, unsigned length)
65 String stripLeadingAndTrailingHTMLSpaces(const String& string)
73 return stripLeadingAndTrailingHTMLSpaces(string, string.characters8(), length);
75 return stripLeadingAndTrailingHTMLSpaces(string, string.characters16(), length);

Completed in 48 milliseconds