Home
last modified time | relevance | path

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

/external/pdfium/fpdfsdk/
Dfpdfedittext.cpp155 uint32_t curCharcode = iter->first; in LoadUnicode() local
157 if (curCharcode % 256 == 0) { in LoadUnicode()
159 char_to_uni[curCharcode] = curUnicode; in LoadUnicode()
162 const size_t maxExtra = 255 - (curCharcode % 256); in LoadUnicode()
170 if (next_it == to_unicode.end() || curCharcode + 1 != next_it->first) in LoadUnicode()
173 ++curCharcode; in LoadUnicode()
183 if (next_it == to_unicode.end() || curCharcode + 1 != next_it->first || in LoadUnicode()
188 ++curCharcode; in LoadUnicode()
192 map_range[std::make_pair(firstCharcode, curCharcode)] = firstUnicode; in LoadUnicode()