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

  /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...]
  /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...]
  /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...]
  /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/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 91 class MyString {
93 MyString(const char* s);
94 ~MyString();
    [all...]

Completed in 503 milliseconds