Home
last modified time | relevance | path

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

/art/runtime/base/
Dlogging.h118 #define CHECK_OP(LHS, RHS, OP) \ argument
119 for (auto _values = ::art::MakeEagerEvaluator(LHS, RHS); \
122 << "Check failed: " << #LHS << " " << #OP << " " << #RHS \
123 << " (" #LHS "=" << _values.lhs << ", " #RHS "=" << _values.rhs << ") "
194 template <typename LHS, typename RHS>
196 EagerEvaluator(LHS l, RHS r) : lhs(l), rhs(r) { } in EagerEvaluator()
197 LHS lhs;
202 template <typename LHS, typename RHS>
203 static inline EagerEvaluator<LHS, RHS> MakeEagerEvaluator(LHS lhs, RHS rhs) { in MakeEagerEvaluator()
204 return EagerEvaluator<LHS, RHS>(lhs, rhs); in MakeEagerEvaluator()