Searched refs:c_string_ (Results 1 - 2 of 2) sorted by relevance

/gem5/ext/googletest/googletest/samples/
H A Dsample2.h43 const char* c_string_; member in class:MyString
55 MyString() : c_string_(NULL) {}
58 explicit MyString(const char* a_c_string) : c_string_(NULL) {
63 MyString(const MyString& string) : c_string_(NULL) {
64 Set(string.c_string_);
71 ~MyString() { delete[] c_string_; }
74 const char* c_string() const { return c_string_; }
77 return c_string_ == NULL ? 0 : strlen(c_string_);
H A Dsample2.cc52 // Makes sure this works when c_string == c_string_
54 delete[] c_string_;
55 c_string_ = temp;

Completed in 5 milliseconds