Lines Matching defs:operator
135 char operator[](size_t n) const { return this->c_str()[n]; }
166 friend bool operator==(const SkString& a, const SkString& b) {
169 friend bool operator!=(const SkString& a, const SkString& b) {
175 SkString& operator=(const SkString&);
176 SkString& operator=(SkString&&);
177 SkString& operator=(const char text[]);
180 char& operator[](size_t n) { return this->writable_str()[n]; }
231 SkString& operator+=(const SkString& s) { this->append(s); return *this; }
232 SkString& operator+=(const char text[]) { this->append(text); return *this; }
233 SkString& operator+=(const char c) { this->append(&c, 1); return *this; }
261 void operator delete(void* p) { ::operator delete(p); }