Searched refs:chunkLimit (Results 1 - 2 of 2) sorted by relevance

/external/icu4c/common/
H A Dutext.cpp2769 int32_t chunkLimit = (int32_t)ut->chunkNativeLimit; local
2770 for (; chunkLimit<scanLimit; chunkLimit++) {
2771 if (str[chunkLimit] == 0) {
2774 ut->a = chunkLimit;
2775 ut->chunkLength = chunkLimit;
2776 ut->nativeIndexingLimit = chunkLimit;
2777 if (index >= chunkLimit) {
2778 index = chunkLimit;
2783 ut->chunkNativeLimit = chunkLimit;
[all...]
/external/icu4c/extra/uconv/
H A Duconv.cpp864 int32_t chunkLimit; local
867 chunkLimit = getChunkLimit(chunk, u);
868 if (chunkLimit < 0 && flush && fromSawEndOfBytes) {
870 chunkLimit = u.length();
872 if (chunkLimit >= 0) {
874 chunk.append(u, 0, chunkLimit);
875 u.remove(0, chunkLimit);

Completed in 4237 milliseconds