Home
last modified time | relevance | path

Searched refs:UTF8CharIterator (Results 1 – 6 of 6) sorted by relevance

/external/cronet/base/i18n/
Dchar_iterator.h23 class BASE_I18N_EXPORT UTF8CharIterator {
26 explicit UTF8CharIterator(StringPiece str);
27 UTF8CharIterator(const UTF8CharIterator&) = delete;
28 UTF8CharIterator& operator=(const UTF8CharIterator&) = delete;
29 ~UTF8CharIterator();
Dchar_iterator.cc15 UTF8CharIterator::UTF8CharIterator(base::StringPiece str) in UTF8CharIterator() function in base::i18n::UTF8CharIterator
21 UTF8CharIterator::~UTF8CharIterator() = default;
23 bool UTF8CharIterator::Advance() { in Advance()
Dchar_iterator_unittest.cc22 UTF8CharIterator empty_iter(empty); in TEST()
29 UTF8CharIterator iter(str); in TEST()
/external/libchrome/base/i18n/
Dchar_iterator.cc13 UTF8CharIterator::UTF8CharIterator(const std::string* str) in UTF8CharIterator() function in base::i18n::UTF8CharIterator
24 UTF8CharIterator::~UTF8CharIterator() = default;
26 bool UTF8CharIterator::Advance() { in Advance()
Dchar_iterator.h34 class BASE_I18N_EXPORT UTF8CharIterator {
37 explicit UTF8CharIterator(const std::string* str);
38 ~UTF8CharIterator();
77 DISALLOW_COPY_AND_ASSIGN(UTF8CharIterator);
Dchar_iterator_unittest.cc15 UTF8CharIterator empty_iter(&empty); in TEST()
22 UTF8CharIterator iter(&str); in TEST()