Lines Matching defs:insert
190 void insert(size_t offset, const SkString& src) { this->insert(offset, src.c_str(), src.size()); }
191 void insert(size_t offset, const char text[]);
192 void insert(size_t offset, const char text[], size_t len);
201 void append(const SkString& str) { this->insert((size_t)-1, str); }
202 void append(const char text[]) { this->insert((size_t)-1, text); }
203 void append(const char text[], size_t len) { this->insert((size_t)-1, text, len); }
212 void prepend(const SkString& str) { this->insert(0, str); }
213 void prepend(const char text[]) { this->insert(0, text); }
214 void prepend(const char text[], size_t len) { this->insert(0, text, len); }