Home
last modified time | relevance | path

Searched defs:NonDefaultConstructible (Results 1 – 6 of 6) sorted by relevance

/external/llvm/unittests/ADT/
DOptionalTest.cpp16 struct NonDefaultConstructible { struct
17 static unsigned CopyConstructions;
18 static unsigned Destructions;
19 static unsigned CopyAssignments;
20 explicit NonDefaultConstructible(int) { in NonDefaultConstructible() argument
22 NonDefaultConstructible(const NonDefaultConstructible&) { in NonDefaultConstructible() argument
25 NonDefaultConstructible &operator=(const NonDefaultConstructible&) { in operator =()
29 ~NonDefaultConstructible() { in ~NonDefaultConstructible()
32 static void ResetCounts() { in ResetCounts()
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
Dp1.cpp9 struct NonDefaultConstructible { struct
22 template<> void f0(NonDefaultConstructible) { } in f0() argument
Dp15.cpp3 struct NonDefaultConstructible { struct
Dp2.cpp9 struct NonDefaultConstructible { struct
23 template<> void f0(NonDefaultConstructible) { } in f0() argument
Dp2-0x.cpp9 struct NonDefaultConstructible { struct
25 template<> void f0(NonDefaultConstructible) { } in f0() argument
/external/clang/test/CXX/temp/temp.spec/temp.explicit/
Dp1.cpp53 struct NonDefaultConstructible { // expected-note{{candidate constructor (the implicit copy constru… struct