Searched refs:monostate (Results 1 - 6 of 6) sorted by relevance
/third_party/skia/third_party/externals/abseil-cpp/absl/types/ |
H A D | variant.h | 58 using std::monostate; 440 // monostate 442 // The monostate class serves as a first alternative type for a variant for 444 struct monostate {}; struct 446 // `absl::monostate` Relational Operators 448 constexpr bool operator<(monostate, monostate) noexcept { return false; } 449 constexpr bool operator>(monostate, monostate) noexcept { return false; } 450 constexpr bool operator<=(monostate, monostat [all...] |
H A D | variant_test.cc | 1964 // [variant.monostate] // 1968 absl::monostate mono; in TEST() 1972 EXPECT_TRUE(absl::is_trivially_default_constructible<absl::monostate>::value); in TEST() 1973 EXPECT_TRUE(is_trivially_move_constructible<absl::monostate>::value); in TEST() 1974 EXPECT_TRUE(absl::is_trivially_copy_constructible<absl::monostate>::value); in TEST() 1975 EXPECT_TRUE(is_trivially_move_assignable<absl::monostate>::value); in TEST() 1976 EXPECT_TRUE(absl::is_trivially_copy_assignable<absl::monostate>::value); in TEST() 1977 EXPECT_TRUE(absl::is_trivially_destructible<absl::monostate>::value); in TEST() 1981 absl::variant<absl::monostate, NonDefaultConstructible> var; in TEST() 1986 // [variant.monostate [all...] |
/third_party/skia/include/private/ |
H A D | SkTLogic.h | 23 struct monostate {}; struct
|
/third_party/skia/src/core/ |
H A D | SkEnumerate.h | 17 template <typename Iter, typename C = skstd::monostate>
|
/third_party/node/deps/ada/ |
H A D | ada.h | 1903 class monostate {}; class 4060 using result = expected<exp_t<Exp>, monostate>; in map_error_impl() 4066 return result(unexpect, monostate{}); in map_error_impl() 4086 using result = expected<exp_t<Exp>, monostate>; in map_error_impl() 4092 return result(unexpect, monostate{}); in map_error_impl() 4115 auto map_error_impl(Exp &&exp, F &&f) -> expected<exp_t<Exp>, monostate> { 4116 using result = expected<exp_t<Exp>, monostate>; 4122 return result(unexpect, monostate{}); 4145 auto map_error_impl(Exp &&exp, F &&f) -> expected<exp_t<Exp>, monostate> { 4146 using result = expected<exp_t<Exp>, monostate>; [all...] |
/third_party/libabigail/tests/lib/ |
H A D | catch.hpp | 1963 struct StringMaker<std::monostate> { 1964 static std::string convert(const std::monostate&) {
|
Completed in 28 milliseconds