Home
last modified time | relevance | path

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

/system/libbase/include/android-base/
Dlogging.h258 #define CHECK_OP(LHS, RHS, OP) \ argument
259 for (auto _values = ::android::base::MakeEagerEvaluator(LHS, RHS); \
265 << "Check failed: " << #LHS << " " << #OP << " " << #RHS << " (" #LHS "=" \
267 << ", " #RHS "=" \
371 template <typename LHS, typename RHS> struct StorageTypes {
372 static constexpr bool voidptr = IsCharPointer<LHS>::value && IsCharPointer<RHS>::value;
374 using RHSType = std::conditional_t<voidptr, const void*, RHS>;
379 template <typename LHS, typename RHS>
383 const Storage<typename StorageTypes<LHS, RHS>::LHSType> lhs;
384 const Storage<typename StorageTypes<LHS, RHS>::RHSType> rhs;
[all …]