Lines Matching defs:insert
192 void insert(size_t offset, const SkString& src) { this->insert(offset, src.c_str(), src.size()); }
193 void insert(size_t offset, const char text[]);
194 void insert(size_t offset, const char text[], size_t len);
203 void append(const SkString& str) { this->insert((size_t)-1, str); }
204 void append(const char text[]) { this->insert((size_t)-1, text); }
205 void append(const char text[], size_t len) { this->insert((size_t)-1, text, len); }
214 void prepend(const SkString& str) { this->insert(0, str); }
215 void prepend(const char text[]) { this->insert(0, text); }
216 void prepend(const char text[], size_t len) { this->insert(0, text, len); }