reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/Remarks/Remark.h
  114   return LHS.SourceFilePath == RHS.SourceFilePath &&
  114   return LHS.SourceFilePath == RHS.SourceFilePath &&
lib/Remarks/BitstreamRemarkParser.cpp
  549     R.Loc->SourceFilePath = *SourceFileName;
  588         R.Args.back().Loc->SourceFilePath = *SourceFileName;
lib/Remarks/BitstreamRemarkSerializer.cpp
  283     R.push_back(StrTab.add(Loc->SourceFilePath).first);
  306       R.push_back(StrTab.add(Arg.Loc->SourceFilePath).first);
lib/Remarks/Remark.cpp
   42   return wrap(&unwrap(DL)->SourceFilePath);
lib/Remarks/RemarkStringTable.cpp
   47     Impl(R.Loc->SourceFilePath);
   52       Impl(Arg.Loc->SourceFilePath);
lib/Remarks/YAMLRemarkSerializer.cpp
   80     StringRef File = RL.SourceFilePath;
tools/llvm-opt-report/OptReport.cpp
  214     StringRef File = Loc->SourceFilePath;
unittests/Remarks/BitstreamRemarksParsingTest.cpp
  177   EXPECT_EQ(checkStr(RL.SourceFilePath, 6), "file.c");
  202       EXPECT_EQ(checkStr(RL.SourceFilePath, 6), "file.c");
unittests/Remarks/BitstreamRemarksSerializerTest.cpp
  142   R.Loc->SourceFilePath = "path";
  231   R.Args.back().Loc->SourceFilePath = "path";
  262   R.Loc->SourceFilePath = "path";
  270   R.Args.back().Loc->SourceFilePath = "argpath";
  312   R.Loc->SourceFilePath = "path";
  320   R.Args.back().Loc->SourceFilePath = "argpath";
unittests/Remarks/RemarksAPITest.cpp
  105   EXPECT_NE(R.Loc->SourceFilePath.data(), R2.Loc->SourceFilePath.data());
  105   EXPECT_NE(R.Loc->SourceFilePath.data(), R2.Loc->SourceFilePath.data());
  108   EXPECT_NE(R.Args.back().Loc->SourceFilePath.data(),
  109             R2.Args.back().Loc->SourceFilePath.data());
  115   EXPECT_EQ(StrTab.add(R.Loc->SourceFilePath).second.data(),
  116             R2.Loc->SourceFilePath.data());
  121   EXPECT_EQ(StrTab.add(R.Args.back().Loc->SourceFilePath).second.data(),
  122             R2.Args.back().Loc->SourceFilePath.data());
unittests/Remarks/YAMLRemarksParsingTest.cpp
  419   EXPECT_EQ(checkStr(RL.SourceFilePath, 6), "file.c");
  444       EXPECT_EQ(checkStr(RL.SourceFilePath, 6), "file.c");
  591   EXPECT_EQ(checkStr(RL.SourceFilePath, 6), "file.c");
  616       EXPECT_EQ(checkStr(RL.SourceFilePath, 6), "file.c");