Home | History | Annotate | Download | only in unicode

Lines Matching refs:int32_t

19 // For example, data types are ICU-ified (size_t,int->int32_t),
67 virtual void Append(const char* bytes, int32_t n) = 0;
83 * int32_t capacity;
111 virtual char* GetAppendBuffer(int32_t min_capacity,
112 int32_t desired_capacity_hint,
113 char* scratch, int32_t scratch_capacity,
114 int32_t* result_capacity);
151 CheckedArrayByteSink(char* outbuf, int32_t capacity);
172 virtual void Append(const char* bytes, int32_t n);
187 virtual char* GetAppendBuffer(int32_t min_capacity,
188 int32_t desired_capacity_hint,
189 char* scratch, int32_t scratch_capacity,
190 int32_t* result_capacity);
196 int32_t NumberOfBytesWritten() const { return size_; }
211 int32_t NumberOfBytesAppended() const { return appended_; }
214 const int32_t capacity_;
215 int32_t size_;
216 int32_t appended_;
245 virtual void Append(const char* data, int32_t n) { dest_->append(data, n); }