Lines Matching refs:fLength
544 BuilderReorderingBuffer() : fLength(0), fLastStarterIndex(-1), fDidReorder(FALSE) {} in BuilderReorderingBuffer()
546 fLength=0; in reset()
550 int32_t length() const { return fLength; } in length()
551 UBool isEmpty() const { return fLength==0; } in isEmpty()
557 if(cc==0 || fLength==0 || ccAt(fLength-1)<=cc) { in append()
559 fLastStarterIndex=fLength; in append()
561 fArray[fLength++]=(c<<8)|cc; in append()
565 int32_t i=fLength-1; in append()
571 for(int32_t j=fLength; i<j; --j) { in append()
575 ++fLength; in append()
580 for(int32_t i=0; i<fLength; ++i) { in toString()
587 --fLength; in setComposite()
588 while(combMarkIndex<fLength) { in setComposite()
595 int32_t fLength; member in BuilderReorderingBuffer