/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...] |
/external/googletest/googletest/samples/ |
sample2.h | 39 class MyString { 42 const MyString& operator=(const MyString& rhs); 53 MyString() : c_string_(nullptr) {} 55 // Constructs a MyString by cloning a 0-terminated C string. 56 explicit MyString(const char* a_c_string) : c_string_(nullptr) { 61 MyString(const MyString& string) : c_string_(nullptr) { 67 // D'tor. MyString is intended to be a final class, so the d'tor 69 ~MyString() { delete[] c_string_; [all...] |
/external/v8/tools/clang/plugins/tests/ |
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_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.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...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_opcodes.py | 106 class MyString(str):
109 self.assertEqual(MyString() % 3, 42)
|
/external/python/cpython2/Lib/test/ |
test_opcodes.py | 106 class MyString(str): 109 self.assertEqual(MyString() % 3, 42)
|
/external/python/cpython3/Lib/test/ |
test_opcodes.py | 131 class MyString(str): 134 self.assertEqual(MyString() % 3, 42)
|
/external/clang/test/SemaTemplate/ |
instantiate-static-var.cpp | 127 typedef char MyString[100]; 130 static MyString str; 133 MyString StaticVarWithTypedefString<T>::str = "";
|
/external/clang/test/PCH/ |
thread-safety-attrs.cpp | 90 class MyString { 92 MyString(const char* s); 93 ~MyString();
|
/external/protobuf/csharp/src/Google.Protobuf.Test/TestProtos/ |
UnittestProto3.cs | 167 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.TestProtos.TestFieldOrderings), global::Google.Protobuf.TestProtos.TestFieldOrderings.Parser, new[]{ "MyString", "MyInt", "MyFloat", "SingleNestedMessage" }, null, null, new pbr::GeneratedClrTypeInfo[] { new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.TestProtos.TestFieldOrderings.Types.NestedMessage), global::Google.Protobuf.TestProtos.TestFieldOrderings.Types.NestedMessage.Parser, new[]{ "Oo", "Bb" }, null, null, null)}), [all...] |
/external/clang/test/SemaCXX/ |
warn-thread-safety-analysis.cpp | 102 class MyString { 104 MyString(const char* s); 105 ~MyString(); [all...] |