Home
last modified time | relevance | path

Searched refs:_Then (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/__type_traits/
H A Dconditional.h38 template <bool _Bp, class _If, class _Then>
42 template <class _If, class _Then>
43 struct _LIBCPP_TEMPLATE_VIS conditional<false, _If, _Then> {
44 using type _LIBCPP_NODEBUG = _Then;
53 template <bool _Bp, class _If, class _Then>
54 using __conditional_t _LIBCPP_NODEBUG = typename conditional<_Bp, _If, _Then>::type;
/freebsd/contrib/googletest/googlemock/include/gmock/internal/
H A Dgmock-pp.h86 #define GMOCK_PP_IF(_Cond, _Then, _Else) \ argument
87 GMOCK_PP_CAT(GMOCK_PP_INTERNAL_IF_, _Cond)(_Then, _Else)
94 #define GMOCK_PP_GENERIC_IF(_Cond, _Then, _Else) \ argument
95 GMOCK_PP_REMOVE_PARENS(GMOCK_PP_IF(_Cond, _Then, _Else))
159 #define GMOCK_PP_INTERNAL_IF_1(_Then, _Else) _Then argument
160 #define GMOCK_PP_INTERNAL_IF_0(_Then, _Else) _Else argument