Home
last modified time | relevance | path

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

/external/pdfium/fpdfsdk/
Dfpdf_edittext.cpp186 uint32_t curCharcode = iter->first; in LoadUnicode() local
188 if (curCharcode % 256 == 0) { in LoadUnicode()
190 char_to_uni[curCharcode] = curUnicode; in LoadUnicode()
193 const size_t maxExtra = 255 - (curCharcode % 256); in LoadUnicode()
201 if (next_it == to_unicode.end() || curCharcode + 1 != next_it->first) in LoadUnicode()
204 ++curCharcode; in LoadUnicode()
214 if (next_it == to_unicode.end() || curCharcode + 1 != next_it->first || in LoadUnicode()
219 ++curCharcode; in LoadUnicode()
223 map_range[std::make_pair(firstCharcode, curCharcode)] = firstUnicode; in LoadUnicode()