OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MyString
(Results
1 - 4
of
4
) sorted by null
/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
...]
/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
...]
/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
...]
/external/clang/test/SemaCXX/
warn-thread-safety-analysis.cpp
[
all
...]
Completed in 1382 milliseconds