Home
last modified time | relevance | path

Searched refs:IncludeGraph (Results 1 – 11 of 11) sorted by relevance

/llvm-project-15.0.7/clang-tools-extra/clangd/index/
H A DIndexAction.cpp45 IncludeGraphCollector(const SourceManager &SM, IncludeGraph &IG) in IncludeGraphCollector()
122 IncludeGraph &IG;
134 std::function<void(IncludeGraph)> IncludeGraphCallback) in IndexAction()
202 std::function<void(IncludeGraph)> IncludeGraphCallback;
207 IncludeGraph IG;
217 std::function<void(IncludeGraph)> IncludeGraphCallback) { in createStaticIndexingAction()
H A DSerialization.h47 llvm::Optional<IncludeGraph> Sources;
60 const IncludeGraph *Sources = nullptr;
H A DIndexAction.h31 std::function<void(IncludeGraph)> IncludeGraphCallback);
H A DFileIndex.h193 IncludeGraph IG;
H A DFileIndex.cpp108 IncludeGraph getSubGraph(llvm::StringRef URI, const IncludeGraph &FullGraph) { in getSubGraph()
109 IncludeGraph IG; in getSubGraph()
H A DYAMLSerialization.cpp60 using clang::clangd::IncludeGraph;
430 IncludeGraph Sources; in readYAML()
H A DBackground.cpp312 [&](IncludeGraph IG) { Index.Sources = std::move(IG); }); in index()
/llvm-project-15.0.7/clang-tools-extra/clangd/unittests/
H A DIndexActionTests.cpp61 std::map<std::string, const IncludeGraphNode &> toMap(const IncludeGraph &IG) { in toMap()
83 [&](IncludeGraph IG) { IndexFile.Sources = std::move(IG); }); in __anonae56ce760502()
H A DSerializationTests.cpp250 IncludeGraph Sources; in TEST()
H A DFileIndexTests.cpp615 IncludeGraph &IG = *IF.Sources; in TEST()
/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DHeaders.h98 using IncludeGraph = llvm::StringMap<IncludeGraphNode>; variable