• Home
  • Raw
  • Download

Lines Matching refs:fZero

85     fZero = other.fZero;  in operator =()
95 return u_countChar32(getCharPtr() + fZero, fLength); in codePointCount()
103 U16_GET(getCharPtr() + fZero, 0, 0, fLength, cp); in getFirstCodePoint()
112 U16_BACK_1(getCharPtr() + fZero, 0, offset); in getLastCodePoint()
114 U16_GET(getCharPtr() + fZero, 0, offset, fLength, cp); in getLastCodePoint()
120 U16_GET(getCharPtr() + fZero, 0, index, fLength, cp); in codePointAt()
126 U16_BACK_1(getCharPtr() + fZero, 0, offset); in codePointBefore()
128 U16_GET(getCharPtr() + fZero, 0, offset, fLength, cp); in codePointBefore()
134 fZero = getCapacity() / 2; in clear()
247 if (index == 0 && fZero - count >= 0) { in prepareForInsert()
249 fZero -= count; in prepareForInsert()
251 return fZero; in prepareForInsert()
252 } else if (index == fLength && fZero + fLength + count < getCapacity()) { in prepareForInsert()
255 return fZero + fLength - count; in prepareForInsert()
264 int32_t oldZero = fZero; in prepareForInsertHelper()
302 fZero = newZero; in prepareForInsertHelper()
319 fZero = newZero; in prepareForInsertHelper()
322 return fZero + index; in prepareForInsertHelper()
327 int32_t position = index + fZero; in remove()
339 return UnicodeString(getCharPtr() + fZero, fLength); in toUnicodeString()
344 return UnicodeString(FALSE, getCharPtr() + fZero, fLength); in toTempUnicodeString()
403 return getCharPtr() + fZero; in chars()
435 for (int i = fZero + startIndex; i <= fZero + fLength; i++) { in nextFieldPosition()
437 if (i < fZero + fLength) { in nextFieldPosition()
445 fp.setEndIndex(i - fZero); in nextFieldPosition()
448 fp.setBeginIndex(i - fZero); in nextFieldPosition()
452 fractionStart = i - fZero + 1; in nextFieldPosition()