Lines Matching refs:offsets_
54 : UObject(other), iter_(NULL), rbc_(NULL), otherHalf_(0), dir_(0), offsets_(NULL) { in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
61 delete offsets_; in ~CollationElementIterator()
82 if (dir_ < 0 && offsets_ != NULL && !offsets_->isEmpty()) { in getOffset()
90 U_ASSERT(i < offsets_->size()); in getOffset()
91 return offsets_->elementAti(i); in getOffset()
185 if (offsets_ == NULL) { in previous()
186 offsets_ = new UVector32(status); in previous()
187 if (offsets_ == NULL) { in previous()
196 int64_t ce = iter_->previousCE(*offsets_, status); in previous()
204 if (offsets_->isEmpty()) { in previous()
208 offsets_->addElement(iter_->getOffset(), status); in previous()
209 offsets_->addElement(limitOffset, status); in previous()
331 : iter_(NULL), rbc_(coll), otherHalf_(0), dir_(0), offsets_(NULL) { in CollationElementIterator()
343 : iter_(NULL), rbc_(coll), otherHalf_(0), dir_(0), offsets_(NULL) { in CollationElementIterator()
380 if(other.dir_ < 0 && other.offsets_ != NULL && !other.offsets_->isEmpty()) { in operator =()
382 if(offsets_ == NULL) { in operator =()
383 offsets_ = new UVector32(other.offsets_->size(), errorCode); in operator =()
385 if(offsets_ != NULL) { in operator =()
386 offsets_->assign(*other.offsets_, errorCode); in operator =()