Searched defs:NonDefaultConstructible (Results 1 - 12 of 12) sorted by relevance

/external/googletest/googlemock/test/
H A Dgmock_ex_test.cc43 class NonDefaultConstructible { class in namespace:__anon7127
45 explicit NonDefaultConstructible(int /* dummy */) {} function in class:__anon7127::NonDefaultConstructible
52 MOCK_METHOD0(GetNonDefaultConstructible, NonDefaultConstructible());
H A Dgmock-spec-builders_test.cc138 class NonDefaultConstructible { class in namespace:__anon7126
140 explicit NonDefaultConstructible(int /* dummy */) {} function in class:__anon7126::NonDefaultConstructible
149 MOCK_METHOD0(ReturnNonDefaultConstructible, NonDefaultConstructible());
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
H A Dalloc.pass.cpp32 struct NonDefaultConstructible { struct
33 constexpr NonDefaultConstructible() { function in struct:NonDefaultConstructible
37 explicit constexpr NonDefaultConstructible(int) {} function in struct:NonDefaultConstructible
100 // using 'NonDefaultConstructible' which will cause a compile error
102 using T = NonDefaultConstructible<>;
/external/v8/testing/gmock/test/
H A Dgmock_ex_test.cc43 class NonDefaultConstructible { class in namespace:__anon23544
45 explicit NonDefaultConstructible(int /* dummy */) {} function in class:__anon23544::NonDefaultConstructible
52 MOCK_METHOD0(GetNonDefaultConstructible, NonDefaultConstructible());
H A Dgmock-spec-builders_test.cc139 class NonDefaultConstructible { class in namespace:__anon23543
141 explicit NonDefaultConstructible(int /* dummy */) {} function in class:__anon23543::NonDefaultConstructible
150 MOCK_METHOD0(ReturnNonDefaultConstructible, NonDefaultConstructible());
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
H A Dp15.cpp3 struct NonDefaultConstructible { struct
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;
H A Dp1.cpp9 struct NonDefaultConstructible { struct
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;
H A Dp2.cpp12 struct NonDefaultConstructible { struct
13 NonDefaultConstructible(int);
29 template<> void f0(NonDefaultConstructible) { }
31 void test_f0(NonDefaultConstructible NDC) {
149 NonDefaultConstructible X0<NonDefaultConstructible>::member;
158 NonDefaultConstructible &get_static_member() {
159 return N0::X0<NonDefaultConstructible>::member;
H A Dp2-0x.cpp9 struct NonDefaultConstructible { struct
10 NonDefaultConstructible(int);
25 template<> void f0(NonDefaultConstructible) { }
27 void test_f0(NonDefaultConstructible NDC) {
154 NonDefaultConstructible X0<NonDefaultConstructible>::member;
163 NonDefaultConstructible &get_static_member() {
164 return N0::X0<NonDefaultConstructible>::member;
/external/libcxx/test/std/utilities/variant/variant.variant/variant.ctor/
H A Ddefault.pass.cpp26 struct NonDefaultConstructible { struct
27 NonDefaultConstructible(int) {} function in struct:NonDefaultConstructible
46 using V = std::variant<NonDefaultConstructible, int>;
/external/clang/test/CXX/temp/temp.spec/temp.explicit/
H A Dp1.cpp53 struct NonDefaultConstructible { // expected-note{{candidate constructor (the implicit copy constructor) not viable}} struct
57 NonDefaultConstructible(int); // expected-note{{candidate constructor}}
91 NonDefaultConstructible X2<NonDefaultConstructible, int>::static_member1;
94 NonDefaultConstructible X2<int, NonDefaultConstructible>::static_member2; // expected-note{{instantiation}}
/external/llvm/unittests/ADT/
H A DOptionalTest.cpp16 struct NonDefaultConstructible { struct in namespace:__anon13703
20 explicit NonDefaultConstructible(int) { function in struct:__anon13703::NonDefaultConstructible
22 NonDefaultConstructible(const NonDefaultConstructible&) { argument
25 NonDefaultConstructible &operator=(const NonDefaultConstructible&) { argument
29 ~NonDefaultConstructible() {
39 unsigned NonDefaultConstructible::CopyConstructions = 0;
40 unsigned NonDefaultConstructible::Destructions = 0;
41 unsigned NonDefaultConstructible
[all...]

Completed in 741 milliseconds