Home
last modified time | relevance | path

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

/ndk/sources/third_party/googletest/googletest/include/gtest/
Dgtest.h262 explicit AssertionResult(bool success) : success_(success) {} in AssertionResult()
265 operator bool() const { return success_; } // NOLINT
304 bool success_; variable
/ndk/sources/third_party/googletest/googletest/src/
Dgtest.cc938 : success_(other.success_), in AssertionResult()
946 AssertionResult negation(!success_); in operator !()