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