OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Uncopyable
(Results
1 - 8
of
8
) sorted by null
/frameworks/compile/mclinker/include/mcld/ADT/
Uncopyable.h
1
//===-
Uncopyable
.h -------------------------------------------------------===//
18
/** \class
Uncopyable
19
* \brief
Uncopyable
provides the base class to forbit copy operations.
22
class
Uncopyable
25
Uncopyable
() { }
26
~
Uncopyable
() { }
29
Uncopyable
(const
Uncopyable
&); /// NOT TO IMPLEMENT
30
Uncopyable
& operator=(const
Uncopyable
&); /// NOT TO IMPLEMEN
[
all
...]
/external/clang/test/SemaCXX/
undefined-internal.cpp
114
struct
Uncopyable
{
115
Uncopyable
() {}
117
Uncopyable
(const
Uncopyable
&); // expected-note {{declared private here}}
120
void f(const
Uncopyable
&) {}
122
f(
Uncopyable
()); // expected-warning {{C++98 requires an accessible copy constructor}}
/external/chromium/testing/gmock/test/
gmock-matchers_test.cc
[
all
...]
/external/protobuf/gtest/test/
gtest_unittest.cc
[
all
...]
/external/chromium/testing/gtest/test/
gtest_unittest.cc
[
all
...]
/external/chromium_org/testing/gtest/test/
gtest_unittest.cc
[
all
...]
/external/gtest/test/
gtest_unittest.cc
[
all
...]
/ndk/sources/third_party/googletest/googletest/test/
gtest_unittest.cc
[
all
...]
Completed in 209 milliseconds