Home | History | Annotate | Download | only in unicode

Lines Matching defs:Append

62    * Append "bytes[0,n-1]" to this.
67 virtual void Append(const char* bytes, int32_t n) = 0;
77 * After writing at most *result_capacity bytes, call Append() with the
79 * Many Append() implementations will avoid copying bytes if this function
86 * sink->Append(buffer, n);
87 * In many implementations, that call to Append will avoid copying bytes.
95 * a prefix to it to Append().
96 * That is, it is not correct to pass an interior pointer to Append().
137 * If more than capacity bytes are Append()ed, then excess bytes are ignored,
152 * Append "bytes[0,n-1]" to this.
157 virtual void Append(const char* bytes, int32_t n);
185 * @return TRUE if more than 'capacity' bytes were Append()ed
210 * Constructs a ByteSink that will append bytes to the dest string.
211 * @param dest pointer to string object to append to
216 * Append "bytes[0,n-1]" to this.
221 virtual void Append(const char* data, int32_t n) { dest_->append(data, n); }