OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:NoCopy
(Results
1 - 3
of
3
) sorted by null
/external/clang/test/CXX/dcl.decl/dcl.init/
p14-0x.cpp
10
struct
NoCopy
{
11
NoCopy
();
12
NoCopy
(const
NoCopy
&) = delete; // expected-note {{here}}
34
NoCopy
nc =
NoCopy
(); // expected-error {{call to deleted}}
/external/clang/test/CXX/stmt.stmt/stmt.iter/stmt.ranged/
p1.cpp
167
struct
NoCopy
{
168
NoCopy
();
169
NoCopy
(const
NoCopy
&) = delete;
173
for (int n :
NoCopy
()) { // ok
/hardware/qcom/display/liboverlay/
overlayUtils.h
109
* class SomeClass : utils::
NoCopy
{...};
111
class
NoCopy
{
113
NoCopy
(){}
114
~
NoCopy
() {}
116
NoCopy
(const
NoCopy
&);
117
const
NoCopy
& operator=(const
NoCopy
&);
Completed in 53 milliseconds