HomeSort by relevance Sort by last modified time
    Searched defs:MyString (Results 1 - 6 of 6) sorted by null

  /external/chromium/testing/gtest/samples/
sample2.h 41 class MyString {
44 const MyString& operator=(const MyString& rhs);
56 MyString() : c_string_(NULL) {}
58 // Constructs a MyString by cloning a 0-terminated C string.
59 explicit MyString(const char* a_c_string) : c_string_(NULL) {
64 MyString(const MyString& string) : c_string_(NULL) {
70 // D'tor. MyString is intended to be a final class, so the d'tor
72 ~MyString() { delete[] c_string_;
    [all...]
  /external/gtest/samples/
sample2.h 41 class MyString {
44 const MyString& operator=(const MyString& rhs);
56 MyString() : c_string_(NULL) {}
58 // Constructs a MyString by cloning a 0-terminated C string.
59 explicit MyString(const char* a_c_string) : c_string_(NULL) {
64 MyString(const MyString& string) : c_string_(NULL) {
70 // D'tor. MyString is intended to be a final class, so the d'tor
72 ~MyString() { delete[] c_string_;
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/samples/
sample2.h 41 class MyString {
44 const MyString& operator=(const MyString& rhs);
56 MyString() : c_string_(NULL) {}
58 // Constructs a MyString by cloning a 0-terminated C string.
59 explicit MyString(const char* a_c_string) : c_string_(NULL) {
64 MyString(const MyString& string) : c_string_(NULL) {
70 // D'tor. MyString is intended to be a final class, so the d'tor
72 ~MyString() { delete[] c_string_;
    [all...]
  /external/protobuf/gtest/samples/
sample2.h 41 class MyString {
44 const MyString& operator=(const MyString& rhs);
56 MyString() : c_string_(NULL) {}
58 // Constructs a MyString by cloning a 0-terminated C string.
59 explicit MyString(const char * c_string) : c_string_(NULL) {
64 MyString(const MyString& string) : c_string_(NULL) {
70 // D'tor. MyString is intended to be a final class, so the d'tor
72 ~MyString() { delete[] c_string_;
    [all...]
  /external/clang/test/PCH/
thread-safety-attrs.cpp 90 class MyString {
92 MyString(const char* s);
93 ~MyString();
  /external/clang/test/SemaCXX/
warn-thread-safety-analysis.cpp 85 class MyString {
87 MyString(const char* s);
88 ~MyString();
    [all...]

Completed in 297 milliseconds