Searched refs:_Then (Results 1 – 2 of 2) sorted by relevance
/external/googletest/googlemock/include/gmock/internal/ |
D | gmock-pp.h | 121 #define GMOCK_PP_IF(_Cond, _Then, _Else) \ argument 122 GMOCK_PP_CAT(GMOCK_PP_INTERNAL_IF_, _Cond)(_Then, _Else) 191 #define GMOCK_PP_INTERNAL_IF_1(_Then, _Else) _Then argument 192 #define GMOCK_PP_INTERNAL_IF_0(_Then, _Else) _Else argument
|
/external/libcxx/include/ |
D | type_traits | 428 template <bool _Bp, class _If, class _Then> 430 template <class _If, class _Then> 431 struct _LIBCPP_TEMPLATE_VIS conditional<false, _If, _Then> {typedef _Then type;}; 434 template <bool _Bp, class _If, class _Then> using conditional_t = typename conditional<_Bp, _If, _T…
|