Home
last modified time | relevance | path

Searched refs:InFile (Results 1 – 25 of 46) sorted by relevance

12

/llvm-project-15.0.7/clang/include/clang/Frontend/
H A DFrontendActions.h27 StringRef InFile) override;
40 StringRef InFile) override;
48 StringRef InFile) override { in CreateASTConsumer() argument
65 StringRef InFile) override;
71 StringRef InFile) override;
110 CreateOutputFile(CompilerInstance &CI, StringRef InFile,
118 CreateOutputFile(CompilerInstance &CI, StringRef InFile) = 0;
147 CreateOutputFile(CompilerInstance &CI, StringRef InFile) override;
155 CreateOutputFile(CompilerInstance &CI, StringRef InFile) override;
168 CreateOutputFile(CompilerInstance &CI, StringRef InFile) override;
[all …]
H A DFrontendAction.h45 StringRef InFile);
71 StringRef InFile) = 0;
261 StringRef InFile) override = 0;
293 StringRef InFile) override;
311 StringRef InFile) override;
/llvm-project-15.0.7/clang/lib/Frontend/
H A DFrontendActions.cpp86 StringRef InFile) { in CreateASTConsumer() argument
97 CI.createDefaultOutputFile(false, InFile)) in CreateASTConsumer()
129 CreateOutputFile(CI, InFile, /*ref*/ OutputFile); in CreateASTConsumer()
145 CI, std::string(InFile), OutputFile, std::move(OS), Buffer)); in CreateASTConsumer()
187 StringRef InFile) { in CreateASTConsumer() argument
208 CI, std::string(InFile), OutputFile, std::move(OS), Buffer)); in CreateASTConsumer()
235 ModuleMapFile = InFile; in CreateOutputFile()
264 StringRef InFile) { in CreateOutputFile() argument
335 StringRef InFile) { in CreateOutputFile() argument
350 StringRef InFile) { in CreateOutputFile() argument
[all …]
H A DInterfaceStubFunctionsConsumer.cpp22 StringRef InFile; member in __anon176fdc0d0111::InterfaceStubFunctionsConsumer
239 InterfaceStubFunctionsConsumer(CompilerInstance &Instance, StringRef InFile, in InterfaceStubFunctionsConsumer() argument
241 : Instance(Instance), InFile(InFile), Format(Format) {} in InterfaceStubFunctionsConsumer()
269 auto OS = Instance.createDefaultOutputFile(/*Binary=*/false, InFile, "ifs"); in HandleTranslationUnit()
338 StringRef InFile) { in CreateASTConsumer() argument
339 return std::make_unique<InterfaceStubFunctionsConsumer>(CI, InFile, "ifs-v1"); in CreateASTConsumer()
H A DASTMerge.cpp20 ASTMergeAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer() argument
21 return AdaptedAction->CreateASTConsumer(CI, InFile); in CreateASTConsumer()
H A DFrontendAction.cpp153 StringRef InFile) { in CreateWrappedASTConsumer() argument
154 std::unique_ptr<ASTConsumer> Consumer = CreateASTConsumer(CI, InFile); in CreateWrappedASTConsumer()
210 std::unique_ptr<ASTConsumer> PluginConsumer = P->CreateASTConsumer(CI, InFile); in CreateWrappedASTConsumer()
1152 StringRef InFile) { in CreateASTConsumer() argument
1161 StringRef InFile) { in CreateASTConsumer() argument
1162 return WrappedAction->CreateASTConsumer(CI, InFile); in CreateASTConsumer()
/llvm-project-15.0.7/clang/lib/Frontend/Rewrite/
H A DFrontendActions.cpp41 HTMLPrintAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer() argument
43 CI.createDefaultOutputFile(false, InFile)) in CreateASTConsumer()
52 FixItAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer() argument
164 RewriteObjCAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer() argument
166 CI.createDefaultOutputFile(false, InFile, "cpp")) { in CreateASTConsumer()
169 std::string(InFile), std::move(OS), CI.getDiagnostics(), in CreateASTConsumer()
172 return CreateObjCRewriter(std::string(InFile), std::move(OS), in CreateASTConsumer()
/llvm-project-15.0.7/clang/include/clang/Rewrite/Frontend/
H A DFrontendActions.h26 StringRef InFile) override;
35 StringRef InFile) override;
62 StringRef InFile) override;
H A DASTConsumers.h30 CreateObjCRewriter(const std::string &InFile, std::unique_ptr<raw_ostream> OS,
34 CreateModernObjCRewriter(const std::string &InFile,
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Frontend/
H A DFrontendActions.cpp16 AnalysisAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer() argument
25 StringRef InFile) { in CreateASTConsumer() argument
/llvm-project-15.0.7/clang/include/clang/StaticAnalyzer/Frontend/
H A DFrontendActions.h29 StringRef InFile) override;
47 StringRef InFile) override;
/llvm-project-15.0.7/clang/include/clang/ExtractAPI/
H A DFrontendActions.h26 StringRef InFile) override;
62 CreateOutputFile(CompilerInstance &CI, StringRef InFile);
/llvm-project-15.0.7/clang/include/clang/ARCMigrate/
H A DARCMTActions.h40 StringRef InFile) override;
69 StringRef InFile) override;
/llvm-project-15.0.7/clang-tools-extra/clang-include-fixer/plugin/
H A DIncludeFixerPlugin.cpp40 CreateASTConsumer(clang::CompilerInstance &CI, StringRef InFile) override { in CreateASTConsumer() argument
42 SemaSource->setFilePath(InFile); in CreateASTConsumer()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCodeGenAction.cpp154 const LangOptions &LangOpts, const std::string &InFile, in BackendConsumer() argument
163 Gen(CreateLLVMCodeGen(Diags, InFile, std::move(FS), HeaderSearchOpts, in BackendConsumer()
993 GetOutputStream(CompilerInstance &CI, StringRef InFile, BackendAction Action) { in GetOutputStream() argument
996 return CI.createDefaultOutputFile(false, InFile, "s"); in GetOutputStream()
998 return CI.createDefaultOutputFile(false, InFile, "ll"); in GetOutputStream()
1000 return CI.createDefaultOutputFile(true, InFile, "bc"); in GetOutputStream()
1006 return CI.createDefaultOutputFile(true, InFile, "o"); in GetOutputStream()
1013 CodeGenAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer() argument
1017 OS = GetOutputStream(CI, InFile, BA); in CreateASTConsumer()
1059 CI.getTargetOpts(), CI.getLangOpts(), std::string(InFile), in CreateASTConsumer()
/llvm-project-15.0.7/clang-tools-extra/clang-include-fixer/find-all-symbols/
H A DFindAllSymbolsAction.cpp28 StringRef InFile) { in CreateASTConsumer() argument
H A DFindAllSymbolsAction.h33 StringRef InFile) override;
/llvm-project-15.0.7/clang-tools-extra/clang-doc/
H A DClangDoc.cpp45 llvm::StringRef InFile) override { in create() argument
/llvm-project-15.0.7/clang-tools-extra/modularize/
H A DModularize.cpp656 Preprocessor &PP, StringRef InFile, int &HadErrors) in CollectEntitiesConsumer() argument
659 PPTracker.handlePreprocessorEntry(PP, InFile); in CollectEntitiesConsumer()
703 CreateASTConsumer(CompilerInstance &CI, StringRef InFile) override { in CreateASTConsumer() argument
705 Entities, PPTracker, CI.getPreprocessor(), InFile, HadErrors); in CreateASTConsumer()
794 CreateASTConsumer(CompilerInstance &CI, StringRef InFile) override { in CreateASTConsumer() argument
/llvm-project-15.0.7/clang/unittests/AST/
H A DExternalASTSourceTest.cpp39 StringRef InFile) override { in CreateASTConsumer() argument
/llvm-project-15.0.7/clang/docs/
H A DRAVFrontendAction.rst29 clang::CompilerInstance &Compiler, llvm::StringRef InFile) {
115 clang::CompilerInstance &Compiler, llvm::StringRef InFile) {
189 clang::CompilerInstance &Compiler, llvm::StringRef InFile) {
/llvm-project-15.0.7/clang/include/clang/CodeGen/
H A DCodeGenAction.h65 StringRef InFile) override;
/llvm-project-15.0.7/clang-tools-extra/pp-trace/
H A DPPTrace.cpp86 StringRef InFile) override { in CreateASTConsumer() argument
/llvm-project-15.0.7/clang/lib/ExtractAPI/
H A DExtractAPIConsumer.cpp876 ExtractAPIAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer() argument
877 OS = CreateOutputFile(CI, InFile); in CreateASTConsumer()
968 ExtractAPIAction::CreateOutputFile(CompilerInstance &CI, StringRef InFile) { in CreateOutputFile() argument
970 CI.createDefaultOutputFile(/*Binary=*/false, InFile, /*Extension=*/"json", in CreateOutputFile()
/llvm-project-15.0.7/clang-tools-extra/clang-include-fixer/
H A DIncludeFixer.cpp35 StringRef InFile) override { in CreateASTConsumer() argument
36 SemaSource.setFilePath(InFile); in CreateASTConsumer()

12