/external/llvm-project/clang-tools-extra/clangd/tool/ |
D | Check.cpp | 119 bool buildInvocation(const ThreadsafeFS &TFS, in buildInvocation() argument 124 Inputs.TFS = &TFS; in buildInvocation() 129 if (auto Contents = TFS.view(llvm::None)->getBufferForFile(File)) { in buildInvocation() 149 Style = getFormatStyleForFile(File, Inputs.Contents, TFS); in buildInvocation() 228 bool check(llvm::StringRef File, const ThreadsafeFS &TFS, in check() argument 247 if (!C.buildCommand() || !C.buildInvocation(TFS, Contents) || !C.buildAST()) in check()
|
D | ClangdMain.cpp | 57 bool check(const llvm::StringRef File, const ThreadsafeFS &TFS, 818 RealThreadsafeFS TFS; in main() local 823 config::Provider::fromAncestorRelativeYAMLFiles(".clangd", TFS)); in main() 829 config::Provider::fromYAMLFile(UserConfig, /*Directory=*/"", TFS)); in main() 846 Providers.push_back(provideClangTidyFiles(TFS)); in main() 877 return check(Path, TFS, Opts) in main() 911 ClangdLSPServer LSPServer(*TransportLayer, TFS, Opts); in main()
|
/external/llvm-project/clang-tools-extra/clangd/index/ |
D | Background.cpp | 95 const ThreadsafeFS &TFS, const GlobalCompilationDatabase &CDB, in BackgroundIndex() argument 97 : SwapIndex(std::make_unique<MemIndex>()), TFS(TFS), CDB(CDB), in BackgroundIndex() 256 auto FS = TFS.view(Cmd.Directory); in index() 271 Inputs.TFS = &TFS; in index() 397 auto FS = TFS.view(/*CWD=*/llvm::None); in loadProject()
|
D | Background.h | 194 const ThreadsafeFS &TFS; variable
|
/external/llvm-project/clang-tools-extra/clangd/ |
D | ClangdServer.cpp | 140 const ThreadsafeFS &TFS, const Options &Opts, in ClangdServer() argument 142 : ConfigProvider(Opts.ConfigProvider), TFS(TFS), ServerCallbacks(Callbacks), in ClangdServer() 191 TFS, CDB, 209 Inputs.TFS = &TFS; in addDocument() 257 ParseInputs ParseInput{IP->Command, &TFS, IP->Contents.str()}; in codeComplete() 303 ParseInputs ParseInput{IP->Command, &TFS, IP->Contents.str()}; in signatureHelp() 344 TFS.view(/*CWD=*/llvm::None).get()); in formatOnType() 414 *InpAST->Inputs.TFS); in rename() 520 getFormatStyleForFile(File, E.InitialCode, TFS); in applyTweak() 553 std::string(Path), TFS.view(llvm::None))) in switchSourceHeader() [all …]
|
D | TidyProvider.cpp | 36 get(const ThreadsafeFS &TFS, in get() argument 40 TFS, FreshTime, in get() 242 TidyProvider provideClangTidyFiles(ThreadsafeFS &TFS) { in provideClangTidyFiles() argument 243 return [Tree = std::make_unique<DotClangTidyTree>(TFS)]( in provideClangTidyFiles()
|
D | ConfigProvider.cpp | 36 void get(const ThreadsafeFS &TFS, DiagnosticCallback DC, in get() argument 40 TFS, FreshTime, in get()
|
D | Compiler.h | 48 const ThreadsafeFS *TFS; member
|
D | ClangdServer.h | 172 ClangdServer(const GlobalCompilationDatabase &CDB, const ThreadsafeFS &TFS, 365 const ThreadsafeFS &TFS; variable
|
D | ClangdLSPServer.h | 62 ClangdLSPServer(Transport &Transp, const ThreadsafeFS &TFS, 268 const ThreadsafeFS &TFS; variable
|
D | Preamble.cpp | 241 PI.TFS = &FS; in scanPreamble() 342 auto VFS = Inputs.TFS->view(Inputs.CompileCommand.Directory); in buildPreamble() 378 auto VFS = Inputs.TFS->view(Inputs.CompileCommand.Directory); in isPreambleCompatible()
|
D | Compiler.cpp | 51 auto VFS = Inputs.TFS->view(Inputs.CompileCommand.Directory); in buildCompilerInvocation()
|
D | SourceCode.h | 171 const ThreadsafeFS &TFS);
|
D | ParsedAST.cpp | 248 auto VFS = Inputs.TFS->view(Inputs.CompileCommand.Directory); in build() 356 auto Style = getFormatStyleForFile(Filename, Inputs.Contents, *Inputs.TFS); in build()
|
D | CodeComplete.cpp | 1126 Input.ParseInput.TFS->view(Input.ParseInput.CompileCommand.Directory); in semaCodeComplete() 1304 *SemaCCInput.ParseInput.TFS); in run() 1376 const ThreadsafeFS &TFS) && { in runWithoutSema() argument 1392 auto Style = getFormatStyleForFile(FileName, Content, TFS); in runWithoutSema() 1817 *ParseInput.TFS) in codeComplete()
|
D | ClangdLSPServer.cpp | 517 Server.emplace(*CDB, TFS, Opts, in onInitialize() 1453 const ThreadsafeFS &TFS, in ClangdLSPServer() argument 1456 MsgHandler(new MessageHandler(*this)), TFS(TFS), in ClangdLSPServer()
|
D | SourceCode.cpp | 575 const ThreadsafeFS &TFS) { in getFormatStyleForFile() argument 578 TFS.view(/*CWD=*/llvm::None).get()); in getFormatStyleForFile()
|
/external/llvm-project/clang-tools-extra/clangd/support/ |
D | FileCache.cpp | 30 const ThreadsafeFS &TFS, std::chrono::steady_clock::time_point FreshTime, in read() argument 49 auto FS = TFS.view(/*CWD=*/llvm::None); in read()
|
D | FileCache.h | 59 void read(const ThreadsafeFS &TFS,
|
/external/llvm-project/clang-tools-extra/clangd/unittests/ |
D | HeadersTests.cpp | 51 PI.TFS = &FS; in setupClang() 56 auto VFS = PI.TFS->view(Cmd->Directory); in setupClang()
|
D | TestTU.cpp | 60 Inputs.TFS = &FS; in inputs()
|
D | PreambleTests.cpp | 77 PI.TFS->view(PI.CompileCommand.Directory), Diags); in collectPatchedIncludes()
|
D | ParsedASTTests.cpp | 275 Inputs.TFS = &FS; in TEST()
|
/external/llvm-project/clang-tools-extra/clangd/index/remote/server/ |
D | Server.cpp | 398 clang::clangd::RealThreadsafeFS TFS; in main() local 399 auto FS = TFS.view(llvm::None); in main()
|
/external/ms-tpm-20-ref/ |
D | .gitignore | 96 # TFS 2012 Local Workspace
|