Lines Matching defs:line

204 // is specified on the command line.
302 // --gtest_output command line flag
389 "This flag specifies the flagfile to read command-line flags from.");
451 int line, const char* message)
452 : data_(new AssertHelperData(type, file, line, message)) {}
459 data_->type, data_->file, data_->line,
476 // A test that fails at a given file/line location with a given message.
488 loc_.line, "") = Message() << error_message_;
540 "To suppress this error for this test suite, insert the following line "
551 location.file.c_str(), location.line, [message, location] {
601 "To suppress this error for this test suite, insert the following line "
614 testcase.second.code_location.line, [message, testcase] {
621 // A copy of all command line arguments. Set by InitGoogleTest().
1415 void PushLine(char edit, const char* line) {
1420 hunk_.push_back(std::make_pair(' ', line));
1424 hunk_removes_.push_back(std::make_pair('-', line));
1428 hunk_adds_.push_back(std::make_pair('+', line));
1498 // Find the first line to include in the hunk.
1912 0, // no line width restrictions
2317 "type_param", "value_param", "file", "line"};
2323 "value_param", "file", "line", "result", "timestamp"};
2492 -1, // We have no info on which line caused the exception.
2789 code_location.line)
2869 TestPartResult(TestPartResult::kSkip, this->file(), this->line(), "");
2978 // We do this by sorting lexicographically on (file, line number), providing
2981 // In the common case the line number comparison shouldn't be necessary,
2992 return a->line() < b->line();
4247 OutputXmlAttribute(stream, kTestsuite, "line",
4248 StreamableToString(test_info.line()));
4698 OutputJsonKey(stream, kTestsuite, "line", test_info.line(), kIndent, false);
5008 char line[1024];
5009 snprintf(line, sizeof(line), " %p: %s\n", raw_stack[i], symbol);
5010 result += line;
5328 << internal::FormatFileLocation(trace.file, trace.line) << " "
5350 // command line for debugging.
6146 // Prints the given C-string on a single line by replacing all '\n'
6184 // We print the type parameter on a single line to make
6193 // We print the value parameter on a single line to make the
6334 // Parses a string as a command line flag. The string should have
6424 // If Google Test detects that a command line flag has its prefix but is not
6482 "following command line flags to control its behavior:\n"
6627 // Parses the command line for Google Test flags, without initializing
6680 // Parses the command line for Google Test flags, without initializing
6787 // RUN_ALL_TESTS(). In particular, it parses a command line for the
6816 // Since Arduino doesn't have a command line, fake out the argc/argv arguments
6893 void ScopedTrace::PushTrace(const char* file, int line, std::string message) {
6896 trace.line = line;