Home
last modified time | relevance | path

Searched defs:Bool (Results 1 – 4 of 4) sorted by relevance

/ndk/sources/third_party/googletest/googletest/test/
Dgtest_pred_impl_unittest.cc56 struct Bool { struct
57 explicit Bool(int val) : value(val != 0) {} in Bool() function
59 bool operator>(int n) const { return value > Bool(n).value; } in operator >() argument
61 Bool operator+(const Bool& rhs) const { return Bool(value + rhs.value); } in operator +() argument
63 bool operator==(const Bool& rhs) const { return value == rhs.value; } in operator ==() argument
68 // Enables Bool to be used in assertions. argument
Dgtest-printers_test.cc318 TEST(PrintBuiltInTypeTest, Bool) { in TEST() argument
493 TEST(PrintPointerToBuiltInTypeTest, Bool) { in TEST() argument
Dgtest_unittest.cc4594 TEST(EqAssertionTest, Bool) { in TEST() argument
/ndk/sources/third_party/googletest/googletest/include/gtest/
Dgtest-param-test.h1220 inline internal::ParamGenerator<bool> Bool() { in Bool() function