Home
last modified time | relevance | path

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

/system/libbase/include/android-base/
Dlogging.h252 #define CHECK_OP(LHS, RHS, OP) \ argument
253 for (auto _values = ::android::base::MakeEagerEvaluator(LHS, RHS); \
259 << "Check failed: " << #LHS << " " << #OP << " " << #RHS << " (" #LHS "=" \
261 << ", " #RHS "=" \
365 template <typename LHS, typename RHS> struct StorageTypes {
366 static constexpr bool voidptr = IsCharPointer<LHS>::value && IsCharPointer<RHS>::value;
368 using RHSType = std::conditional_t<voidptr, const void*, RHS>;
373 template <typename LHS, typename RHS>
377 const Storage<typename StorageTypes<LHS, RHS>::LHSType> lhs;
378 const Storage<typename StorageTypes<LHS, RHS>::RHSType> rhs;
[all …]