Searched refs:MyString (Results 1 - 25 of 35) sorted by relevance

12

/external/v8/tools/clang/plugins/tests/
H A Dmissing_ctor_ignored_base.h8 struct MyString { struct
9 MyString();
10 ~MyString();
11 MyString(const MyString&);
12 MyString(MyString&&);
35 MyVector<MyString> two_;
45 MyString one_;
46 MyString two
[all...]
H A Dmissing_ctor_dllexport.h8 struct MyString { struct
9 MyString();
10 MyString(const MyString&);
11 MyString(MyString&&);
28 MyVector<MyString> two_;
37 MyString one_;
38 MyString two_;
39 MyString three
[all...]
H A Dmissing_ctor.h8 struct MyString { struct
9 MyString();
10 ~MyString();
11 MyString(const MyString&);
12 MyString(MyString&&);
30 MyVector<MyString> two_;
41 MyString one_;
42 MyString two
[all...]
H A Dmissing_ctor.cpp13 MyVector<MyString> two_;
H A Dmissing_ctor_dllexport.cpp13 MyVector<MyString> two_;
/external/google-breakpad/src/testing/gtest/samples/
H A Dsample2.h41 class MyString { class
44 const MyString& operator=(const MyString& rhs);
55 MyString() : c_string_(NULL) {} function in class:MyString
57 // Constructs a MyString by cloning a 0-terminated C string.
58 explicit MyString(const char* a_c_string) : c_string_(NULL) { function in class:MyString
63 MyString(const MyString& string) : c_string_(NULL) { function in class:MyString
69 // D'tor. MyString is intended to be a final class, so the d'tor
71 ~MyString() { delet
[all...]
H A Dsample2_unittest.cc46 // 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
[all...]
H A Dsample2.cc39 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/
H A Dsample2.h41 class MyString { class
44 const MyString& operator=(const MyString& rhs);
55 MyString() : c_string_(NULL) {} function in class:MyString
57 // Constructs a MyString by cloning a 0-terminated C string.
58 explicit MyString(const char* a_c_string) : c_string_(NULL) { function in class:MyString
63 MyString(const MyString& string) : c_string_(NULL) { function in class:MyString
69 // D'tor. MyString is intended to be a final class, so the d'tor
71 ~MyString() { delet
[all...]
H A Dsample2_unittest.cc46 // 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
[all...]
H A Dsample2.cc39 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/
H A Dsample2.h41 class MyString { class
44 const MyString& operator=(const MyString& rhs);
56 MyString() : c_string_(NULL) {} function in class:MyString
58 // Constructs a MyString by cloning a 0-terminated C string.
59 explicit MyString(const char* a_c_string) : c_string_(NULL) { function in class:MyString
64 MyString(const MyString& string) : c_string_(NULL) { function in class:MyString
70 // D'tor. MyString is intended to be a final class, so the d'tor
72 ~MyString() { delet
[all...]
H A Dsample2_unittest.cc46 // 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
[all...]
H A Dsample2.cc39 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/
H A Dsample2.h41 class MyString { class
44 const MyString& operator=(const MyString& rhs);
55 MyString() : c_string_(NULL) {} function in class:MyString
57 // Constructs a MyString by cloning a 0-terminated C string.
58 explicit MyString(const char* a_c_string) : c_string_(NULL) { function in class:MyString
63 MyString(const MyString& string) : c_string_(NULL) { function in class:MyString
69 // D'tor. MyString is intended to be a final class, so the d'tor
71 ~MyString() { delet
[all...]
H A Dsample2_unittest.cc46 // 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
[all...]
H A Dsample2.cc39 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/
H A Dsample2.h41 class MyString { class
44 const MyString& operator=(const MyString& rhs);
55 MyString() : c_string_(NULL) {} function in class:MyString
57 // Constructs a MyString by cloning a 0-terminated C string.
58 explicit MyString(const char* a_c_string) : c_string_(NULL) { function in class:MyString
63 MyString(const MyString& string) : c_string_(NULL) { function in class:MyString
69 // D'tor. MyString is intended to be a final class, so the d'tor
71 ~MyString() { delet
[all...]
H A Dsample2_unittest.cc46 // 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
[all...]
H A Dsample2.cc39 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/clang/test/SemaTemplate/
H A Dinstantiate-static-var.cpp127 typedef char MyString[100]; typedef
130 static MyString str;
133 MyString StaticVarWithTypedefString<T>::str = "";
/external/lzma/CPP/7zip/UI/Client7z/
H A Dmakefile10 $O\MyString.obj \
/external/python/cpython2/Lib/test/
H A Dtest_opcodes.py106 class MyString(str): class in function:OpcodeTest.test_modulo_of_string_subclasses
109 self.assertEqual(MyString() % 3, 42)
/external/python/cpython3/Lib/test/
H A Dtest_opcodes.py128 class MyString(str): class in function:OpcodeTest.test_modulo_of_string_subclasses
131 self.assertEqual(MyString() % 3, 42)
/external/lzma/CPP/7zip/Bundles/LzmaCon/
H A Dmakefile18 $O\MyString.obj \

Completed in 1353 milliseconds

12