Home
last modified time | relevance | path

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

/system/libbase/include/android-base/
Dlogging.h252 #define CHECK_OP(LHS, RHS, OP) \ argument
254 UNLIKELY(!(_values.lhs.v OP _values.rhs.v)); \
259 << "Check failed: " << #LHS << " " << #OP << " " << #RHS << " (" #LHS "=" \
/system/libhidl/base/include/hidl/
DHidlSupport.h194 #define HIDL_STRING_OPERATOR(OP) \ argument
195 inline bool operator OP(const hidl_string& hs1, const hidl_string& hs2) { \
196 return strcmp(hs1.c_str(), hs2.c_str()) OP 0; /* NOLINT */ \
198 inline bool operator OP(const hidl_string& hs, const char* s) { \
199 return strcmp(hs.c_str(), s) OP 0; /* NOLINT */ \
201 inline bool operator OP(const char* s, const hidl_string& hs) { \
202 return strcmp(s, hs.c_str()) OP 0; /* NOLINT */ \