Home | History | Annotate | Download | only in src

Lines Matching defs:CHECK

25 // CheckHandler is the class constructed by failing CHECK macros. CheckHandler
29 CheckHandler(const char* check, const char* file, const char* func, int line)
31 log_ << file << ":" << line << ": " << func << ": Check `" << check
53 // The CHECK macro returns a std::ostream object that can have extra information
56 #define CHECK(b) \
61 #define CHECK(b) ::benchmark::internal::GetNullLogInstance()
64 #define CHECK_EQ(a, b) CHECK((a) == (b))
65 #define CHECK_NE(a, b) CHECK((a) != (b))
66 #define CHECK_GE(a, b) CHECK((a) >= (b))
67 #define CHECK_LE(a, b) CHECK((a) <= (b))
68 #define CHECK_GT(a, b) CHECK((a) > (b))
69 #define CHECK_LT(a, b) CHECK((a) < (b))