Home | History | Annotate | Download | only in i18n

Lines Matching full:appended_

36               appended_(0), ignore_(0) {}
46 if (appended_ < capacity_ || Resize(1, appended_)) {
47 buffer_[appended_] = (char)b;
49 ++appended_;
56 int32_t NumberOfBytesAppended() const { return appended_; }
63 // Either ignore_ or appended_ should be 0.
64 return ignore_ + capacity_ - appended_;
67 UBool Overflowed() const { return appended_ > capacity_; }
82 int32_t appended_;