Home | History | Annotate | Download | only in i18n

Lines Matching defs:oldBuffer

61         oldBuffer.remove();
66 UBool isEmpty() const { return oldBuffer.isEmpty(); }
68 UBool hasNext() const { return pos < oldBuffer.length(); }
72 UChar32 c = oldBuffer.char32At(pos);
87 int32_t length = oldBuffer.length();
91 // Not back far enough to re-enter the oldBuffer.
95 // Back out all beyond-oldBuffer code points and re-enter the buffer.
96 pos = oldBuffer.moveIndex32(length, beyond - n);
100 // Go backwards from inside the oldBuffer.
101 pos = oldBuffer.moveIndex32(pos, -n);
120 oldBuffer.replace(0, pos, newBuffer, 0, skipLengthAtMatch);
130 UnicodeString oldBuffer;
132 // These might have been read from the normal text or from the oldBuffer.
134 // Reading index in oldBuffer,
135 // or counter for how many code points have been read beyond oldBuffer (pos-oldBuffer.length()).