Searched refs:NonDefaultConstructible (Results 1 - 4 of 4) sorted by relevance
/third_party/json/tests/src/ |
H A D | unit-regression2.cpp | 139 struct NonDefaultConstructible struct 141 explicit NonDefaultConstructible(int a) in NonDefaultConstructible() function 150 struct adl_serializer<NonDefaultConstructible> 152 static NonDefaultConstructible from_json(json const& j) in from_json() 154 return NonDefaultConstructible(j.get<int>()); in from_json() 682 auto arr = j.get<std::array<NonDefaultConstructible, 2>>(); 689 CHECK_THROWS_AS((j.get<std::array<NonDefaultConstructible, 1>>()), json::type_error); 697 auto p = j.get<std::pair<NonDefaultConstructible, NonDefaultConstructible>>(); 704 auto p = j.get<std::pair<int, NonDefaultConstructible>>(); [all...] |
/third_party/googletest/googlemock/test/ |
H A D | gmock_ex_test.cc | 43 class NonDefaultConstructible { class 45 explicit NonDefaultConstructible(int /* dummy */) {} in NonDefaultConstructible() function in __anon3009::NonDefaultConstructible 52 MOCK_METHOD0(GetNonDefaultConstructible, NonDefaultConstructible());
|
H A D | gmock-spec-builders_test.cc | 94 class NonDefaultConstructible { class 96 explicit NonDefaultConstructible(int /* dummy */) {} in NonDefaultConstructible() function in testing::__anon3008::NonDefaultConstructible 105 MOCK_METHOD0(ReturnNonDefaultConstructible, NonDefaultConstructible());
|
/third_party/skia/third_party/externals/abseil-cpp/absl/types/ |
H A D | variant_test.cc | 275 struct NonDefaultConstructible { struct 276 NonDefaultConstructible() = delete; 316 std::is_default_constructible<variant<NonDefaultConstructible>>::value); in TEST() 318 variant<NonDefaultConstructible, int>>::value)); in TEST() 320 variant<int, NonDefaultConstructible>>::value)); in TEST() 1981 absl::variant<absl::monostate, NonDefaultConstructible> var; in TEST()
|
Completed in 10 milliseconds