OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MyString
(Results
1 - 8
of
8
) sorted by null
/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/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* 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
...]
/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/SemaTemplate/
instantiate-static-var.cpp
118
typedef char
MyString
[100];
121
static
MyString
str;
124
MyString
StaticVarWithTypedefString<T>::str = "";
/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
102
class
MyString
{
104
MyString
(const char* s);
105
~
MyString
();
[
all
...]
Completed in 102 milliseconds