Home
last modified time | relevance | path

Searched refs:ScanningOutputFormat (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/
H A DDependencyScanningService.h35 enum class ScanningOutputFormat { enum
86 ScanningMode Mode, ScanningOutputFormat Format,
94 ScanningOutputFormat getFormat() const { return Format; } in getFormat()
112 const ScanningOutputFormat Format;
/freebsd/contrib/llvm-project/clang/tools/clang-scan-deps/
H A DClangScanDeps.cpp84 static ScanningOutputFormat Format = ScanningOutputFormat::Make;
146 llvm::StringSwitch<std::optional<ScanningOutputFormat>>(A->getValue()) in ParseArgs()
147 .Case("make", ScanningOutputFormat::Make) in ParseArgs()
148 .Case("p1689", ScanningOutputFormat::P1689) in ParseArgs()
149 .Case("experimental-full", ScanningOutputFormat::Full) in ParseArgs()
1002 if (Format == ScanningOutputFormat::Full) in clang_scan_deps_main()
1030 if (Format == ScanningOutputFormat::Make) { in clang_scan_deps_main()
1035 } else if (Format == ScanningOutputFormat::P1689) { in clang_scan_deps_main()
1169 if (Format == ScanningOutputFormat::Full) in clang_scan_deps_main()
1171 else if (Format == ScanningOutputFormat::P1689) in clang_scan_deps_main()
/freebsd/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DDependencyScanningService.cpp16 ScanningMode Mode, ScanningOutputFormat Format, in DependencyScanningService()
H A DDependencyScanningWorker.cpp507 case ScanningOutputFormat::Make: in runInvocation()
512 case ScanningOutputFormat::P1689: in runInvocation()
513 case ScanningOutputFormat::Full: in runInvocation()
539 if (Service.getFormat() == ScanningOutputFormat::P1689) in runInvocation()
H A DModuleDepCollector.cpp1038 if (Service.getFormat() == ScanningOutputFormat::P1689) { in addFileDep()