Searched refs:UTF8WordRange (Results 1 – 2 of 2) sorted by relevance
81 template <typename CharIterator> class UTF8WordRange {85 UTF8WordRange(CharIterator begin, CharIterator end) : range_(begin, end) {} in UTF8WordRange() function86 explicit UTF8WordRange(const UTF8Range<CharIterator>& range) : range_(range) {} in UTF8WordRange() function87 UTF8WordRange() = default;88 UTF8WordRange(const UTF8WordRange&) = default;89 UTF8WordRange(UTF8WordRange&&) = default;90 UTF8WordRange& operator=(UTF8WordRange&&) = default;91 UTF8WordRange& operator=(const UTF8WordRange&) = default;
140 UTF8WordRange<const char*> wordRange(text); in findLongestWordSequence()