Lines Matching defs:c_str_
3042 String() : c_str_(NULL), length_(0) {}
3047 c_str_ = NULL;
3064 String(const String& str) : c_str_(NULL), length_(0) { *this = str; }
3068 ~String() { delete[] c_str_; }
3125 const char* c_str() const { return c_str_; }
3135 delete[] c_str_;
3137 c_str_ = NULL;
3149 // function can only be called when c_str_ has not been allocated.
3156 c_str_ = str;
3160 const char* c_str_;