Searched refs:LHS (Results 1 – 1 of 1) sorted by relevance
/system/libbase/include/android-base/ |
D | logging.h | 252 #define CHECK_OP(LHS, RHS, OP) \ argument 253 for (auto _values = ::android::base::MakeEagerEvaluator(LHS, RHS); \ 259 << "Check failed: " << #LHS << " " << #OP << " " << #RHS << " (" #LHS "=" \ 365 template <typename LHS, typename RHS> struct StorageTypes { 366 static constexpr bool voidptr = IsCharPointer<LHS>::value && IsCharPointer<RHS>::value; 367 using LHSType = std::conditional_t<voidptr, const void*, LHS>; 373 template <typename LHS, typename RHS> 377 const Storage<typename StorageTypes<LHS, RHS>::LHSType> lhs; 378 const Storage<typename StorageTypes<LHS, RHS>::RHSType> rhs; 399 template <typename LHS, typename RHS> [all …]
|