Home | History | Annotate | Download | only in internal

Lines Matching refs:c_str_

192   String() : c_str_(NULL), length_(0) {}
197 c_str_ = NULL;
214 String(const String& str) : c_str_(NULL), length_(0) { *this = str; }
218 ~String() { delete[] c_str_; }
275 const char* c_str() const { return c_str_; }
285 delete[] c_str_;
287 c_str_ = NULL;
299 // function can only be called when c_str_ has not been allocated.
306 c_str_ = str;
310 const char* c_str_;