/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...] |
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/chromium_org/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/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/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...] |
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 * c_string) { 49 // Sets the 0-terminated C string this MyString object 51 void MyString::Set(const char * c_string) { 53 const char * const temp = MyString::CloneCString(c_string);
|
/ndk/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);
|
/external/chromium_org/tools/idl_parser/test_parser/ |
exception_web.idl | 49 * ExceptionField(MyString) 58 DOMString MyString;
|
typedef_web.idl | 122 *Typedef(MyString) 126 typedef DOMString MyString;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_opcodes.py | 106 class MyString(str): 109 self.assertEqual(MyString() % 3, 42)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_opcodes.py | 106 class MyString(str): 109 self.assertEqual(MyString() % 3, 42)
|
/external/lzma/CPP/7zip/UI/Client7z/ |
makefile | 11 $O\MyString.obj \
|
/external/lzma/CPP/7zip/Bundles/LzmaCon/ |
makefile | 17 $O\MyString.obj \
|
/external/clang/test/PCH/ |
thread-safety-attrs.cpp | 90 class MyString { 92 MyString(const char* s); 93 ~MyString();
|
/external/lzma/CPP/7zip/Bundles/Format7zExtractR/ |
makefile | 11 $O\MyString.obj \
|
/external/lzma/CPP/7zip/UI/Console/ |
makefile | 31 $O\MyString.obj \
|
/external/lzma/CPP/7zip/Bundles/Format7zR/ |
makefile | 10 $O\MyString.obj \
|