Home
last modified time | relevance | path

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

/art/runtime/base/
Dlogging.h36 #define CHECK_OP(LHS, RHS, OP) \ argument
37 for (auto _values = ::art::MakeEagerEvaluator(LHS, RHS); \
40 << "Check failed: " << #LHS << " " << #OP << " " << #RHS \
41 << " (" #LHS "=" << _values.lhs << ", " #RHS "=" << _values.rhs << ") "
152 template <typename LHS, typename RHS>
154 EagerEvaluator(LHS lhs, RHS rhs) : lhs(lhs), rhs(rhs) { } in EagerEvaluator()
156 RHS rhs;
185 template <typename LHS, typename RHS>
186 EagerEvaluator<LHS, RHS> MakeEagerEvaluator(LHS lhs, RHS rhs) { in MakeEagerEvaluator()
187 return EagerEvaluator<LHS, RHS>(lhs, rhs); in MakeEagerEvaluator()