OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:nondefaultconstructible
(Results
1 - 6
of
6
) sorted by null
/external/llvm/unittests/ADT/
OptionalTest.cpp
16
struct
NonDefaultConstructible
{
20
explicit
NonDefaultConstructible
(int) {
22
NonDefaultConstructible
(const
NonDefaultConstructible
&) {
25
NonDefaultConstructible
&operator=(const
NonDefaultConstructible
&) {
29
~
NonDefaultConstructible
() {
39
unsigned
NonDefaultConstructible
::CopyConstructions = 0;
40
unsigned
NonDefaultConstructible
::Destructions = 0;
41
unsigned
NonDefaultConstructible
::CopyAssignments = 0
[
all
...]
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
p15.cpp
3
struct
NonDefaultConstructible
{
4
NonDefaultConstructible
(const
NonDefaultConstructible
&); // expected-note{{candidate constructor}}
17
NonDefaultConstructible
X<
NonDefaultConstructible
, long>::member;
19
NonDefaultConstructible
&test(bool b) {
20
return b? X<
NonDefaultConstructible
, int>::member // expected-note{{instantiation}}
21
: X<
NonDefaultConstructible
, long>::member;
p1.cpp
9
struct
NonDefaultConstructible
{
10
NonDefaultConstructible
(int);
22
template<> void f0(
NonDefaultConstructible
) { }
24
void test_f0(
NonDefaultConstructible
NDC) {
67
NonDefaultConstructible
X0<
NonDefaultConstructible
>::member = 17;
69
NonDefaultConstructible
&get_static_member() {
70
return X0<
NonDefaultConstructible
>::member;
p2-0x.cpp
9
struct
NonDefaultConstructible
{
10
NonDefaultConstructible
(int);
23
template<> void f0(
NonDefaultConstructible
) { }
25
void test_f0(
NonDefaultConstructible
NDC) {
114
NonDefaultConstructible
X0<
NonDefaultConstructible
>::member;
123
NonDefaultConstructible
&get_static_member() {
124
return N0::X0<
NonDefaultConstructible
>::member;
p2.cpp
9
struct
NonDefaultConstructible
{
10
NonDefaultConstructible
(int);
23
template<> void f0(
NonDefaultConstructible
) { }
25
void test_f0(
NonDefaultConstructible
NDC) {
115
NonDefaultConstructible
X0<
NonDefaultConstructible
>::member;
124
NonDefaultConstructible
&get_static_member() {
125
return N0::X0<
NonDefaultConstructible
>::member;
/external/clang/test/CXX/temp/temp.spec/temp.explicit/
p1.cpp
51
struct
NonDefaultConstructible
{ // expected-note{{candidate constructor (the implicit copy constructor) not viable}}
52
NonDefaultConstructible
(int); // expected-note{{candidate constructor}}
86
NonDefaultConstructible
X2<
NonDefaultConstructible
, int>::static_member1;
89
NonDefaultConstructible
X2<int,
NonDefaultConstructible
>::static_member2; // expected-note{{instantiation}}
Completed in 77 milliseconds