Home | History | Annotate | Download | only in platform

Lines Matching refs:CharType

34 template<typename CharType>
35 bool skipExactly(const CharType*& position, const CharType* end, CharType delimiter)
44 template<typename CharType, bool characterPredicate(CharType)>
45 bool skipExactly(const CharType*& position, const CharType* end)
54 template<typename CharType>
55 void skipUntil(const CharType*& position, const CharType* end, CharType delimiter)
61 template<typename CharType, bool characterPredicate(CharType)>
62 void skipUntil(const CharType*& position, const CharType* end)
68 template<typename CharType, bool characterPredicate(CharType)>
69 void skipWhile(const CharType*& position, const CharType* end)
75 template<typename CharType, bool characterPredicate(CharType)>
76 void reverseSkipWhile(const CharType*& position, const CharType* start)