Home
last modified time | relevance | path

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

/system/libbase/include/android-base/
Dlogging.h265 #define CHECK_OP(LHS, RHS, OP) \ argument
266 for (auto _values = ::android::base::MakeEagerEvaluator(LHS, RHS); \
272 << "Check failed: " << #LHS << " " << #OP << " " << #RHS << " (" #LHS "=" \
378 template <typename LHS, typename RHS> struct StorageTypes {
379 static constexpr bool voidptr = IsCharPointer<LHS>::value && IsCharPointer<RHS>::value;
380 using LHSType = std::conditional_t<voidptr, const void*, LHS>;
386 template <typename LHS, typename RHS>
390 const Storage<typename StorageTypes<LHS, RHS>::LHSType> lhs;
391 const Storage<typename StorageTypes<LHS, RHS>::RHSType> rhs;
412 template <typename LHS, typename RHS>
[all …]