Searched refs:next_index (Results 1 – 3 of 3) sorted by relevance
/aosp14/frameworks/base/libs/androidfw/ |
H A D | Util.cpp | 127 size_t next_index; in ModifiedUtf8ToUtf8() local 129 utf32_from_utf8_at(modified_utf8.data(), modified_size, index, &next_index); in ModifiedUtf8ToUtf8() 137 utf32_from_utf8_at(modified_utf8.data(), modified_size, next_index, &next_index); in ModifiedUtf8ToUtf8() 159 index = next_index; in ModifiedUtf8ToUtf8() 165 for (size_t i = index; i < next_index; i++) { in ModifiedUtf8ToUtf8() 168 index = next_index; in ModifiedUtf8ToUtf8()
|
/aosp14/system/core/libutils/ |
H A D | Unicode.cpp | 128 int32_t utf32_from_utf8_at(const char *src, size_t src_len, size_t index, size_t *next_index) in utf32_from_utf8_at() argument 134 if (next_index == nullptr) { in utf32_from_utf8_at() 135 next_index = &unused_index; in utf32_from_utf8_at() 140 *next_index = index + num_read; in utf32_from_utf8_at()
|
/aosp14/system/core/libutils/include/utils/ |
H A D | Unicode.h | 93 int32_t utf32_from_utf8_at(const char *src, size_t src_len, size_t index, size_t *next_index);
|