/external/chromium/testing/gtest/src/ |
gtest-typed-test.cc | 98 fprintf(stderr, "%s %s", FormatFileLocation(file, line).c_str(),
|
gtest-port.cc | 431 GTEST_API_ ::std::string FormatFileLocation(const char* file, int line) { 446 // FormatFileLocation in order to contrast the two functions. 448 // to the file location it produces, unlike FormatFileLocation(). 467 << FormatFileLocation(file, line).c_str() << ": ";
|
gtest.cc | [all...] |
/external/gtest/src/ |
gtest-typed-test.cc | 86 fprintf(stderr, "%s %s", FormatFileLocation(file, line).c_str(),
|
gtest.cc | [all...] |
/external/llvm/utils/unittest/googletest/ |
gtest-typed-test.cc | 98 fprintf(stderr, "%s %s", FormatFileLocation(file, line).c_str(),
|
gtest-port.cc | 433 << FormatFileLocation(file, line).c_str() << ": ";
|
gtest.cc | [all...] |
/external/protobuf/gtest/src/ |
gtest-typed-test.cc | 86 fprintf(stderr, "%s %s", FormatFileLocation(file, line).c_str(),
|
gtest-port.cc | 424 << FormatFileLocation(file, line).c_str() << ": ";
|
gtest.cc | [all...] |
/external/chromium/testing/gtest/include/gtest/internal/ |
gtest-death-test-internal.h | 169 ::testing::internal::FormatFileLocation(__FILE__, __LINE__).c_str(), \
|
gtest-internal.h | 589 FormatFileLocation(file, line).c_str(), test_name, case_name); [all...] |
gtest-port.h | 868 GTEST_API_ ::std::string FormatFileLocation(const char* file, int line); 872 // FormatFileLocation in order to contrast the two functions. [all...] |
/external/gtest/include/gtest/internal/ |
gtest-port.h | 840 FormatFileLocation(file, line); 847 void FormatFileLocation(const char* file, int line) {
|
gtest-internal.h | 562 inline String FormatFileLocation(const char* file, int line) { 618 FormatFileLocation(file, line).c_str(), test_name, case_name); [all...] |
/external/chromium/testing/gtest/test/ |
gtest-port_test.cc | 212 // Verifies behavior of FormatFileLocation. 214 EXPECT_PRED_FORMAT2(IsSubstring, "foo.cc", FormatFileLocation("foo.cc", 42)); 215 EXPECT_PRED_FORMAT2(IsSubstring, "42", FormatFileLocation("foo.cc", 42)); 220 IsSubstring, "unknown file", FormatFileLocation(NULL, 42)); 221 EXPECT_PRED_FORMAT2(IsSubstring, "42", FormatFileLocation(NULL, 42)); 225 EXPECT_EQ("foo.cc:", FormatFileLocation("foo.cc", -1)); 229 EXPECT_EQ("unknown file:", FormatFileLocation(NULL, -1)); [all...] |
/external/llvm/utils/unittest/googletest/include/gtest/internal/ |
gtest-internal.h | 583 inline String FormatFileLocation(const char* file, int line) { 644 FormatFileLocation(file, line).c_str(), test_name, case_name); [all...] |
/external/protobuf/gtest/include/gtest/internal/ |
gtest-internal.h | 561 inline String FormatFileLocation(const char* file, int line) { 617 FormatFileLocation(file, line).c_str(), test_name, case_name); [all...] |
/external/chromium/testing/gmock/src/ |
gmock-spec-builders.cc | 542 std::cout << internal::FormatFileLocation(state.first_used_file,
|
/external/chromium/testing/gmock/include/gmock/ |
gmock-spec-builders.h | 693 *os << FormatFileLocation(file(), line()) << " "; [all...] |
/external/chromium/testing/gmock/test/ |
gmock-spec-builders_test.cc | 92 using testing::internal::FormatFileLocation; 880 std::string expect_call_location = FormatFileLocation(__FILE__, __LINE__ + 1); 897 on_call_location = FormatFileLocation(__FILE__, __LINE__ + 1); [all...] |