/external/v8/tools/clang/plugins/tests/ |
missing_ctor_ignored_base.h | 8 struct MyString { 9 MyString(); 10 ~MyString(); 11 MyString(const MyString&); 12 MyString(MyString&&); 35 MyVector<MyString> two_; 45 MyString one_; 46 MyString two_ [all...] |
missing_ctor_dllexport.h | 8 struct MyString { 9 MyString(); 10 MyString(const MyString&); 11 MyString(MyString&&); 28 MyVector<MyString> two_; 37 MyString one_; 38 MyString two_; 39 MyString three_ [all...] |
missing_ctor.h | 8 struct MyString { 9 MyString(); 10 ~MyString(); 11 MyString(const MyString&); 12 MyString(MyString&&); 30 MyVector<MyString> two_; 41 MyString one_; 42 MyString two_ [all...] |
missing_ctor.cpp | 13 MyVector<MyString> two_;
|
/external/google-breakpad/src/testing/gtest/samples/ |
sample2.h | 41 class MyString { 44 const MyString& operator=(const MyString& rhs); 55 MyString() : c_string_(NULL) {} 57 // Constructs a MyString by cloning a 0-terminated C string. 58 explicit MyString(const char* a_c_string) : c_string_(NULL) { 63 MyString(const MyString& string) : c_string_(NULL) { 69 // D'tor. MyString is intended to be a final class, so the d'tor 71 ~MyString() { delete[] c_string_; [all...] |
sample2_unittest.cc | 46 // In this example, we test the MyString class (a simple string). 49 TEST(MyString, DefaultConstructor) { 50 const MyString s; 80 TEST(MyString, ConstructorFromCString) { 81 const MyString s(kHelloString); 88 TEST(MyString, CopyConstructor) { 89 const MyString s1(kHelloString); 90 const MyString s2 = s1; 95 TEST(MyString, Set) { 96 MyString s [all...] |
sample2.cc | 39 const char* MyString::CloneCString(const char* a_c_string) { 49 // Sets the 0-terminated C string this MyString object 51 void MyString::Set(const char* a_c_string) { 53 const char* const temp = MyString::CloneCString(a_c_string);
|
/external/googletest/googletest/samples/ |
sample2.h | 41 class MyString { 44 const MyString& operator=(const MyString& rhs); 55 MyString() : c_string_(NULL) {} 57 // Constructs a MyString by cloning a 0-terminated C string. 58 explicit MyString(const char* a_c_string) : c_string_(NULL) { 63 MyString(const MyString& string) : c_string_(NULL) { 69 // D'tor. MyString is intended to be a final class, so the d'tor 71 ~MyString() { delete[] c_string_; [all...] |
sample2_unittest.cc | 46 // In this example, we test the MyString class (a simple string). 49 TEST(MyString, DefaultConstructor) { 50 const MyString s; 80 TEST(MyString, ConstructorFromCString) { 81 const MyString s(kHelloString); 88 TEST(MyString, CopyConstructor) { 89 const MyString s1(kHelloString); 90 const MyString s2 = s1; 95 TEST(MyString, Set) { 96 MyString s [all...] |
sample2.cc | 39 const char* MyString::CloneCString(const char* a_c_string) { 49 // Sets the 0-terminated C string this MyString object 51 void MyString::Set(const char* a_c_string) { 53 const char* const temp = MyString::CloneCString(a_c_string);
|
/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* 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...] |
sample2_unittest.cc | 46 // In this example, we test the MyString class (a simple string). 49 TEST(MyString, DefaultConstructor) { 50 const MyString s; 80 TEST(MyString, ConstructorFromCString) { 81 const MyString s(kHelloString); 88 TEST(MyString, CopyConstructor) { 89 const MyString s1(kHelloString); 90 const MyString s2 = s1; 95 TEST(MyString, Set) { 96 MyString s [all...] |
sample2.cc | 39 const char* MyString::CloneCString(const char* a_c_string) { 49 // Sets the 0-terminated C string this MyString object 51 void MyString::Set(const char* a_c_string) { 53 const char* const temp = MyString::CloneCString(a_c_string);
|
/external/v8/testing/gtest/samples/ |
sample2.h | 41 class MyString { 44 const MyString& operator=(const MyString& rhs); 55 MyString() : c_string_(NULL) {} 57 // Constructs a MyString by cloning a 0-terminated C string. 58 explicit MyString(const char* a_c_string) : c_string_(NULL) { 63 MyString(const MyString& string) : c_string_(NULL) { 69 // D'tor. MyString is intended to be a final class, so the d'tor 71 ~MyString() { delete[] c_string_; [all...] |
sample2_unittest.cc | 46 // In this example, we test the MyString class (a simple string). 49 TEST(MyString, DefaultConstructor) { 50 const MyString s; 80 TEST(MyString, ConstructorFromCString) { 81 const MyString s(kHelloString); 88 TEST(MyString, CopyConstructor) { 89 const MyString s1(kHelloString); 90 const MyString s2 = s1; 95 TEST(MyString, Set) { 96 MyString s [all...] |
sample2.cc | 39 const char* MyString::CloneCString(const char* a_c_string) { 49 // Sets the 0-terminated C string this MyString object 51 void MyString::Set(const char* a_c_string) { 53 const char* const temp = MyString::CloneCString(a_c_string);
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/samples/ |
sample2.h | 41 class MyString { 44 const MyString& operator=(const MyString& rhs); 55 MyString() : c_string_(NULL) {} 57 // Constructs a MyString by cloning a 0-terminated C string. 58 explicit MyString(const char* a_c_string) : c_string_(NULL) { 63 MyString(const MyString& string) : c_string_(NULL) { 69 // D'tor. MyString is intended to be a final class, so the d'tor 71 ~MyString() { delete[] c_string_; [all...] |
sample2_unittest.cc | 46 // In this example, we test the MyString class (a simple string). 49 TEST(MyString, DefaultConstructor) { 50 const MyString s; 80 TEST(MyString, ConstructorFromCString) { 81 const MyString s(kHelloString); 88 TEST(MyString, CopyConstructor) { 89 const MyString s1(kHelloString); 90 const MyString s2 = s1; 95 TEST(MyString, Set) { 96 MyString s [all...] |
sample2.cc | 39 const char* MyString::CloneCString(const char* a_c_string) { 49 // Sets the 0-terminated C string this MyString object 51 void MyString::Set(const char* a_c_string) { 53 const char* const temp = MyString::CloneCString(a_c_string);
|
/prebuilts/ndk/r11/sources/third_party/googletest/googletest/samples/ |
sample2.h | 41 class MyString { 44 const MyString& operator=(const MyString& rhs); 55 MyString() : c_string_(NULL) {} 57 // Constructs a MyString by cloning a 0-terminated C string. 58 explicit MyString(const char* a_c_string) : c_string_(NULL) { 63 MyString(const MyString& string) : c_string_(NULL) { 69 // D'tor. MyString is intended to be a final class, so the d'tor 71 ~MyString() { delete[] c_string_; [all...] |
sample2_unittest.cc | 46 // In this example, we test the MyString class (a simple string). 49 TEST(MyString, DefaultConstructor) { 50 const MyString s; 80 TEST(MyString, ConstructorFromCString) { 81 const MyString s(kHelloString); 88 TEST(MyString, CopyConstructor) { 89 const MyString s1(kHelloString); 90 const MyString s2 = s1; 95 TEST(MyString, Set) { 96 MyString s [all...] |
sample2.cc | 39 const char* MyString::CloneCString(const char* a_c_string) { 49 // Sets the 0-terminated C string this MyString object 51 void MyString::Set(const char* a_c_string) { 53 const char* const temp = MyString::CloneCString(a_c_string);
|
/prebuilts/ndk/r13/sources/third_party/googletest/googletest/samples/ |
sample2.h | 41 class MyString { 44 const MyString& operator=(const MyString& rhs); 55 MyString() : c_string_(NULL) {} 57 // Constructs a MyString by cloning a 0-terminated C string. 58 explicit MyString(const char* a_c_string) : c_string_(NULL) { 63 MyString(const MyString& string) : c_string_(NULL) { 69 // D'tor. MyString is intended to be a final class, so the d'tor 71 ~MyString() { delete[] c_string_; [all...] |
sample2_unittest.cc | 46 // In this example, we test the MyString class (a simple string). 49 TEST(MyString, DefaultConstructor) { 50 const MyString s; 80 TEST(MyString, ConstructorFromCString) { 81 const MyString s(kHelloString); 88 TEST(MyString, CopyConstructor) { 89 const MyString s1(kHelloString); 90 const MyString s2 = s1; 95 TEST(MyString, Set) { 96 MyString s [all...] |
sample2.cc | 39 const char* MyString::CloneCString(const char* a_c_string) { 49 // Sets the 0-terminated C string this MyString object 51 void MyString::Set(const char* a_c_string) { 53 const char* const temp = MyString::CloneCString(a_c_string);
|