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

/gem5/ext/googletest/googletest/samples/
H A Dsample2.cc39 const char* MyString::CloneCString(const char* a_c_string) { argument
40 if (a_c_string == NULL) return NULL;
42 const size_t len = strlen(a_c_string);
44 memcpy(clone, a_c_string, len + 1);
51 void MyString::Set(const char* a_c_string) { argument
53 const char* const temp = MyString::CloneCString(a_c_string);
H A Dsample2.h48 static const char* CloneCString(const char* a_c_string);
58 explicit MyString(const char* a_c_string) : c_string_(NULL) { argument
59 Set(a_c_string);

Completed in 4 milliseconds