Home
last modified time | relevance | path

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

/third_party/googletest/googlemock/include/gmock/internal/
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))
/third_party/rust/crates/bindgen/bindgen-tests/tests/
Dstylo.hpp4873 template<typename... _Cond>
4874 using _Require = typename enable_if<__and_<_Cond...>::value>::type;
4878 template<bool _Cond, typename _Iftrue, typename _Iffalse>
5222 template<bool _Cond, typename _Tp = void>
5223 using enable_if_t = typename enable_if<_Cond, _Tp>::type;
5226 template<bool _Cond, typename _Iftrue, typename _Iffalse>
5227 using conditional_t = typename conditional<_Cond, _Iftrue, _Iffalse>::type;
12650 template<bool _Cond, typename _Iftrue, typename _Iffalse>
56101 template<typename _Cond, typename _Tp>
56102 using _Requires = typename enable_if<_Cond::value, _Tp>::type;