Home
last modified time | relevance | path

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

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/default/
H A Dstring_stdlib.cpp11 char const *itr = str.c_str(), *nitr; in uppercase() local
15 for (; itr < end; itr = nitr) in uppercase()
20 nitr = _nu_toupper(itr, end, nu_utf8_read, &code_point, &buf, nullptr); in uppercase()
33 output.write(itr, nitr - itr); in uppercase()
44 char const *itr = str.c_str(), *nitr; in lowercase() local
48 for (; itr < end; itr = nitr) in lowercase()
53 nitr = _nu_tolower(itr, end, nu_utf8_read, &code_point, &buf, nullptr); in lowercase()
66 output.write(itr, nitr - itr); in lowercase()
H A Dunaccent.cpp13 char const *itr = str.c_str(), *nitr; in unaccent() local
17 for (; itr < end; itr = nitr) in unaccent()
22 nitr = _nu_tounaccent(itr, end, nu_utf8_read, &code_point, &buf, nullptr); in unaccent()
35 output.write(itr, nitr - itr); in unaccent()