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

References

tools/clang/tools/extra/unittests/clang-doc/MergeTest.cpp
  200   Expected->Name = "f";
  201   Expected->Namespace.emplace_back(EmptySID, "A", InfoType::IT_namespace);
  203   Expected->DefLoc = Location(10, llvm::SmallString<16>{"test.cpp"});
  204   Expected->Loc.emplace_back(12, llvm::SmallString<16>{"test.cpp"});
  206   Expected->ReturnType = TypeInfo(EmptySID, "void", InfoType::IT_default);
  207   Expected->Params.emplace_back("int", "P");
  208   Expected->IsMethod = true;
  209   Expected->Parent = Reference(EmptySID, "Parent", InfoType::IT_namespace);
  211   Expected->Description.emplace_back();
  212   auto ExpectedFullComment = &Expected->Description.back();
  224   CheckFunctionInfo(InfoAsFunction(Expected.get()),