Home | History | Annotate | Download | only in test

Lines Matching refs:FormatCompilerIndependentFileLocation

232 // Verifies behavior of FormatCompilerIndependentFileLocation.
234 EXPECT_EQ("foo.cc:42", FormatCompilerIndependentFileLocation("foo.cc", 42));
239 FormatCompilerIndependentFileLocation(NULL, 42));
243 EXPECT_EQ("foo.cc", FormatCompilerIndependentFileLocation("foo.cc", -1));
247 EXPECT_EQ("unknown file", FormatCompilerIndependentFileLocation(NULL, -1));