Searched refs:_Then (Results 1 – 6 of 6) sorted by relevance
/external/tflite-support/tensorflow_lite_support/cc/port/default/ |
D | status_macros.h | 149 #define STATUS_MACROS_IMPL_IF_1(_Then, _Else) _Then argument 150 #define STATUS_MACROS_IMPL_IF_0(_Then, _Else) _Else argument 151 #define STATUS_MACROS_IMPL_IF(_Cond, _Then, _Else) \ argument 153 (_Then, _Else)
|
/external/googletest/googlemock/include/gmock/internal/ |
D | gmock-pp.h | 86 #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
|
/external/icing/icing/text_classifier/lib3/utils/base/ |
D | statusor.h | 378 #define TC_STATUS_MACROS_IMPL_IF_1(_Then, _Else) _Then argument 379 #define TC_STATUS_MACROS_IMPL_IF_0(_Then, _Else) _Else argument 380 #define TC_STATUS_MACROS_IMPL_IF(_Cond, _Then, _Else) \ argument 381 TC_STATUS_MACROS_IMPL_CONCAT_(TC_STATUS_MACROS_IMPL_IF_, _Cond)(_Then, _Else)
|
/external/libtextclassifier/native/utils/base/ |
D | statusor.h | 380 #define TC_STATUS_MACROS_IMPL_IF_1(_Then, _Else) _Then argument 381 #define TC_STATUS_MACROS_IMPL_IF_0(_Then, _Else) _Else argument 382 #define TC_STATUS_MACROS_IMPL_IF(_Cond, _Then, _Else) \ argument 383 TC_STATUS_MACROS_IMPL_CONCAT_(TC_STATUS_MACROS_IMPL_IF_, _Cond)(_Then, _Else)
|
/external/llvm-project/libcxx/include/ |
D | type_traits | 529 template <bool _Bp, class _If, class _Then> 531 template <class _If, class _Then> 532 struct _LIBCPP_TEMPLATE_VIS conditional<false, _If, _Then> {typedef _Then type;}; 535 template <bool _Bp, class _If, class _Then> using conditional_t = typename conditional<_Bp, _If, _T…
|
/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…
|