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

References

tools/clang/tools/extra/clangd/unittests/HeaderSourceSwitchTests.cpp
   33   EXPECT_TRUE(PathResult.hasValue());
   34   ASSERT_EQ(PathResult.getValue(), FooH);
   36   PathResult = getCorrespondingHeaderOrSource(FooH, FS.getFileSystem());
   37   EXPECT_TRUE(PathResult.hasValue());
   38   ASSERT_EQ(PathResult.getValue(), FooCpp);
   47   PathResult = getCorrespondingHeaderOrSource(FooC, FS.getFileSystem());
   48   EXPECT_TRUE(PathResult.hasValue());
   49   ASSERT_EQ(PathResult.getValue(), FooHH);
   56   PathResult = getCorrespondingHeaderOrSource(Foo2C, FS.getFileSystem());
   57   EXPECT_TRUE(PathResult.hasValue());
   58   ASSERT_EQ(PathResult.getValue(), Foo2HH);
   66   PathResult = getCorrespondingHeaderOrSource(Foo3C, FS.getFileSystem());
   67   EXPECT_TRUE(PathResult.hasValue());
   68   ASSERT_EQ(PathResult.getValue(), Foo3HXX);
   72   PathResult = getCorrespondingHeaderOrSource(Invalid, FS.getFileSystem());
   73   EXPECT_FALSE(PathResult.hasValue());