Home | History | Annotate | Download | only in core

Lines Matching refs:insert

91     void    insert(size_t offset, const SkString& src) { this->insert(offset, src.c_str(), src.size()); }
92 void insert(size_t offset, const char text[]);
93 void insert(size_t offset, const char text[], size_t len);
99 void append(const SkString& str) { this->insert((size_t)-1, str); }
100 void append(const char text[]) { this->insert((size_t)-1, text); }
101 void append(const char text[], size_t len) { this->insert((size_t)-1, text, len); }
107 void prepend(const SkString& str) { this->insert(0, str); }
108 void prepend(const char text[]) { this->insert(0, text); }
109 void prepend(const char text[], size_t len) { this->insert(0, text, len); }