Home | History | Annotate | Download | only in text

Lines Matching defs:keep

69             return null; // keep original
84 int keep = mMax - (dest.length() - (dend - dstart));
86 if (keep <= 0) {
88 } else if (keep >= end - start) {
89 return null; // keep original
91 keep += start;
92 if (Character.isHighSurrogate(source.charAt(keep - 1))) {
93 --keep;
94 if (keep == start) {
98 return source.subSequence(start, keep);