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

References

tools/clang/tools/extra/clangd/unittests/BackgroundIndexTests.cpp
   90   FS.Files[testPath("root/A.cc")] = "error file";
  110   FS.Files[testPath("root/A.h")] = R"cpp(
  119   FS.Files[testPath("root/A.cc")] =
  121   FS.Files[testPath("root/B.cc")] =
  179   FS.Files[testPath("root/A.h")] = R"cpp(
  185   FS.Files[testPath("root/A.cc")] = R"cpp(
  250   FS.Files[testPath("root/B.h")] = "";
  251   FS.Files[testPath("root/A.h")] = R"cpp(
  258   FS.Files[testPath("root/A.cc")] = A_CC;
  301   FS.Files[testPath("root/A.h")] = R"cpp(
  306   FS.Files[testPath("root/A.cc")] =
  327   FS.Files[testPath("root/A.h")] = R"cpp(
  348   FS.Files[testPath("root/A.cc")] =
  372   FS.Files[testPath("root/A.h")] = R"cpp(
  377   FS.Files[testPath("root/B.h")] = R"cpp(
  380   FS.Files[testPath("root/A.cc")] =
  418   FS.Files[testPath("root/B.h")] = R"cpp(
  448   FS.Files[testPath("root/A.cc")] = "";
  454   FS.Files[testPath("root/B.cc")] = "";
  477   FS.Files[testPath("A.h")] = "void foo();";
  478   FS.Files[testPath("B.h")] = "#include \"C.h\"\nasdf;";
  479   FS.Files[testPath("C.h")] = "";
  480   FS.Files[testPath("A.cc")] = R"cpp(
  541   FS.Files[testPath("A.cc")] = "#include \"A.h\"";
  542   FS.Files[testPath("A.h")] = "";
  560   FS.Files[testPath("A.cc")] = " ";
tools/clang/tools/extra/clangd/unittests/ClangdTests.cpp
  149       FS.Files[testPath(FileWithContents.first)] = FileWithContents.second;
  208   FS.Files[testPath("foo.h")] = "int a;";
  209   FS.Files[FooCpp] = SourceContents;
  244   FS.Files[FooH] = "int a;";
  245   FS.Files[FooCpp] = SourceContents;
  252   FS.Files[FooH] = "";
  258   FS.Files[FooH] = "int a;";
  321   FS.Files[DummyLibFile] = "";
  328   FS.Files[StringPath] = "class mock_string {};";
  335   FS.Files[FooCpp] = SourceContents;
  365   FS.Files[FooCpp] = "";
  399   FS.Files[FooCpp] = "";
  447   FS.Files[FooCpp] = "";
  448   FS.Files[BarCpp] = "";
  449   FS.Files[BazCpp] = "";
  495   FS.Files[FooCpp] = "";
  496   FS.Files[BarCpp] = "";
  582     FS.Files[Name] = "";
  814   FS.Files[FooCpp] = "";
  848   FS.Files[Path] = Code;
  866   FS.Files[HeaderPath] = "struct X { int bar; };";
  883   FS.Files[HeaderPath] = "struct X { int bar; int baz; };";
  977   FS.Files[FooCpp] = FooCpp;
  997   FS.Files[FooCpp] = FooCpp;
 1067   FS.Files[FooCpp] = FooCpp;
tools/clang/tools/extra/clangd/unittests/CodeCompleteTests.cpp
  669   FS.Files[BarHeader] = "";
  741   FS.Files[testPath("bar.h")] =
  793   FS.Files[testPath("foo_header.h")] = R"cpp(
  822   FS.Files[testPath("foo.h")] = R"cpp(
 1457   FS.Files[FooH] = R"cpp(
 1461   FS.Files[FooCpp] = "";
 1479   FS.Files[FooH] = R"cpp(
 1496   FS.Files[FooCpp] = "";
 1566   FS.Files[FooCpp] = "// empty file";
 1968   FS.Files[testPath("foo.h")] = R"cpp(
 2192   FS.Files[FooHeader] = "";
 2224   FS.Files[FooHeader] = "#define CLANGD_PREAMBLE_HEADER x\n";
 2345   FS.Files[BarHeader] = "";
tools/clang/tools/extra/clangd/unittests/FindSymbolsTests.cpp
   62     FSProvider.Files[testPath("unused")] = "";
   82     FSProvider.Files[Path] = Contents;
  339     FSProvider.Files[FilePath] = Contents;
tools/clang/tools/extra/clangd/unittests/HeaderSourceSwitchTests.cpp
   28   FS.Files[FooCpp];
   29   FS.Files[FooH];
   30   FS.Files[Invalid];
   45   FS.Files[FooC];
   46   FS.Files[FooHH];
   54   FS.Files[Foo2C];
   55   FS.Files[Foo2HH];
   64   FS.Files[Foo3C];
   65   FS.Files[Foo3HXX];
  263   FS.Files[HeaderPath] = "void foo();";
  268   FS.Files[CppPath] = FileContent;
tools/clang/tools/extra/clangd/unittests/HeadersTests.cpp
   34     FS.Files[MainFile] = "";
   36     FS.Files[testPath("sub/EMPTY")] = "";
   55         llvm::MemoryBuffer::getMemBuffer(FS.Files[MainFile], MainFile), VFS,
  140   FS.Files[MainFile] = R"cpp(
  144   FS.Files[BarHeader] = "";
  156   FS.Files[BazHeader] = "";
  158   FS.Files[BarHeader] = R"cpp(
  161   FS.Files[MainFile] = R"cpp(
  194   FS.Files[MainFile] = R"cpp(
  206   FS.Files[Path] = "";
tools/clang/tools/extra/clangd/unittests/SemanticHighlightingTests.cpp
  631   FS.Files[FooCpp] = "";
tools/clang/tools/extra/clangd/unittests/SemanticSelectionTests.cpp
  157   FS.Files[FooH] = R"cpp(
  171   FS.Files[FooCpp] = SourceAnnotations.code();
tools/clang/tools/extra/clangd/unittests/TestFS.h
   34     return buildTestFS(Files);
tools/clang/tools/extra/clangd/unittests/XRefsTests.cpp
  571   FS.Files[FooCpp] = "";
  573   FS.Files[HeaderInPreambleH] = HeaderInPreambleAnnotations.code();
  575   FS.Files[HeaderNotInPreambleH] = HeaderNotInPreambleAnnotations.code();
 1870   FS.Files[FooCpp] = SourceAnnotations.code();
 1877   FS.Files[FooH] = HeaderAnnotations.code();
 1919   FS.Files[FooM] = ObjC.code();
 1940   FS.Files[FooCpp] = FooWithHeader.code();
 1944   FS.Files[FooH] = FooHeader.code();