Home | History | Annotate | Download | only in core

Lines Matching defs:insert

167     void insert(size_t offset, const SkString& src) { this->insert(offset, src.c_str(), src.size()); }
168 void insert(size_t offset, const char text[]);
169 void insert(size_t offset, const char text[], size_t len);
178 void append(const SkString& str) { this->insert((size_t)-1, str); }
179 void append(const char text[]) { this->insert((size_t)-1, text); }
180 void append(const char text[], size_t len) { this->insert((size_t)-1, text, len); }
189 void prepend(const SkString& str) { this->insert(0, str); }
190 void prepend(const char text[]) { this->insert(0, text); }
191 void prepend(const char text[], size_t len) { this->insert(0, text, len); }