Home | History | Annotate | Download | only in internal

Lines Matching refs:c_str

88   static inline const char* ShowCString(const char* c_str) {
89 return c_str ? c_str : "(null)";
99 static String ShowCStringQuoted(const char* c_str);
108 static const char* CloneCString(const char* c_str);
161 String(const char* c_str) : c_str_(NULL) { // NOLINT
162 *this = c_str;
191 bool operator==(const char* c_str) const {
192 return CStringEquals(c_str_, c_str);
197 bool operator!=(const char* c_str) const {
198 return !CStringEquals(c_str_, c_str);
218 const char* c_str() const { return c_str_; }
226 // This function works even when the c_str parameter has the same
228 void Set(const char* c_str, size_t length);
231 const String& operator=(const char* c_str);
247 return os << String::ShowCString(str.c_str());