Home | History | Annotate | Download | only in src

Lines Matching defs:check

13 // CheckHandler is the class constructed by failing CHECK macros. CheckHandler
17 CheckHandler(const char* check, const char* file, const char* func, int line)
20 log_ << file << ":" << line << ": " << func << ": Check `"
21 << check << "' failed. ";
43 // The CHECK macro returns a std::ostream object that can have extra information
46 # define CHECK(b) (b ? ::benchmark::internal::GetNullLogInstance() \
50 # define CHECK(b) ::benchmark::internal::GetNullLogInstance()
53 #define CHECK_EQ(a, b) CHECK((a) == (b))
54 #define CHECK_NE(a, b) CHECK((a) != (b))
55 #define CHECK_GE(a, b) CHECK((a) >= (b))
56 #define CHECK_LE(a, b) CHECK((a) <= (b))
57 #define CHECK_GT(a, b) CHECK((a) > (b))
58 #define CHECK_LT(a, b) CHECK((a) < (b))