Lines Matching defs:file
32 // This file implements the ON_CALL() and EXPECT_CALL() macros.
242 // Where in the source file was the default action spec defined?
243 const char* file() const { return file_; }
341 // source file that contains the statement => file_
451 const char* file, int line)
685 ExpectationBase(const char* file, int line, const std::string& source_text);
689 // Where in the source file was the expectation spec defined?
690 const char* file() const { return file_; }
696 // Describes the source file location of this expectation.
698 *os << FormatFileLocation(file(), line()) << " ";
842 const char* file_; // The file that contains the expectation.
1273 // Logs a message including file and line number information.
1275 const char* file, int line,
1293 internal::OnCallSpec<F>& InternalDefaultActionSetAt(const char* file,
1296 LogWithLocation(internal::kInfo, file, line,
1298 return function_mocker_->AddNewOnCallSpec(file, line, matchers_);
1303 internal::TypedExpectation<F>& InternalExpectedAt(const char* file, int line,
1308 LogWithLocation(internal::kInfo, file, line, source_text + " invoked");
1309 return function_mocker_->AddNewExpectation(file, line, source_text,
1522 OnCallSpec<F>& AddNewOnCallSpec(const char* file, int line,
1525 Mock::RegisterUseByOnCallOrExpectCall(MockObject(), file, line);
1526 OnCallSpec<F>* const on_call_spec = new OnCallSpec<F>(file, line, m);
1532 TypedExpectation<F>& AddNewExpectation(const char* file, int line,
1536 Mock::RegisterUseByOnCallOrExpectCall(MockObject(), file, line);
1538 new TypedExpectation<F>(this, file, line, source_text, m);
1571 << FormatFileLocation(spec->file(), spec->line()) << "\n";
1850 Expect(false, untyped_expectation->file(), untyped_expectation->line(),
2004 // inside a header file. However, the MockSpec class template is