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

/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DStringImpl.cpp840 template <class UCharPredicate>
841 inline PassRefPtr<StringImpl> StringImpl::stripMatchedCharacters(UCharPredicate predicate)
868 class UCharPredicate { class in namespace:WTF
870 inline UCharPredicate(CharacterMatchFunctionPtr function): m_function(function) { } function in class:WTF::UCharPredicate
896 return stripMatchedCharacters(UCharPredicate(isWhiteSpace));
939 template <typename CharType, class UCharPredicate>
940 inline PassRefPtr<StringImpl> StringImpl::simplifyMatchedCharactersToSpace(UCharPredicate predicate, StripBehavior stripBehavior)
998 return StringImpl::simplifyMatchedCharactersToSpace<LChar>(UCharPredicate(isWhiteSpace), stripBehavior);
999 return StringImpl::simplifyMatchedCharactersToSpace<UChar>(UCharPredicate(isWhiteSpace), stripBehavior);

Completed in 165 milliseconds