Lines Matching defs:file
32 // This file defines some utilities useful for implementing Google
233 // Reports a failure that occurred at the given source file location.
234 virtual void ReportFailure(FailureType type, const char* file, int line,
246 inline void Assert(bool condition, const char* file, int line,
249 GetFailureReporter()->ReportFailure(FailureReporterInterface::kFatal, file,
253 inline void Assert(bool condition, const char* file, int line) {
254 Assert(condition, file, line, "Assertion failed.");
259 inline void Expect(bool condition, const char* file, int line,
263 file, line, msg);
266 inline void Expect(bool condition, const char* file, int line) {
267 Expect(condition, file, line, "Expectation failed.");
423 GTEST_API_ void IllegalDoDefault(const char* file, int line);