OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:UCharPredicate
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/wtf/text/
StringImpl.h
441
template <class
UCharPredicate
> PassRefPtr<StringImpl> stripMatchedCharacters(
UCharPredicate
);
442
template <typename CharType, class
UCharPredicate
> PassRefPtr<StringImpl> simplifyMatchedCharactersToSpace(
UCharPredicate
, StripBehavior);
StringImpl.cpp
826
template <class
UCharPredicate
>
827
inline PassRefPtr<StringImpl> StringImpl::stripMatchedCharacters(
UCharPredicate
predicate)
854
class
UCharPredicate
{
856
inline
UCharPredicate
(CharacterMatchFunctionPtr function): m_function(function) { }
882
return stripMatchedCharacters(
UCharPredicate
(isWhiteSpace));
925
template <typename CharType, class
UCharPredicate
>
926
inline PassRefPtr<StringImpl> StringImpl::simplifyMatchedCharactersToSpace(
UCharPredicate
predicate, StripBehavior stripBehavior)
984
return StringImpl::simplifyMatchedCharactersToSpace<LChar>(
UCharPredicate
(isWhiteSpace), stripBehavior);
985
return StringImpl::simplifyMatchedCharactersToSpace<UChar>(
UCharPredicate
(isWhiteSpace), stripBehavior);
[
all
...]
Completed in 3659 milliseconds