Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/include/clang/Tooling/DependencyScanning/
H A DDependencyScanningService.h32 enum class ScanningOutputFormat { enum
51 DependencyScanningService(ScanningMode Mode, ScanningOutputFormat Format,
57 ScanningOutputFormat getFormat() const { return Format; } in getFormat()
69 const ScanningOutputFormat Format;
H A DDependencyScanningWorker.h108 ScanningOutputFormat Format;
/openbsd-src/gnu/llvm/clang/tools/clang-scan-deps/
H A DClangScanDeps.cpp134 static llvm::cl::opt<ScanningOutputFormat> Format(
137 clEnumValN(ScanningOutputFormat::Make, "make",
139 clEnumValN(ScanningOutputFormat::P1689, "p1689",
141 clEnumValN(ScanningOutputFormat::Full, "experimental-full",
145 llvm::cl::init(ScanningOutputFormat::Make),
553 if (Format != ScanningOutputFormat::P1689) { in getCompilationDataBase()
765 if (Format == ScanningOutputFormat::Make) { in main()
771 } else if (Format == ScanningOutputFormat::P1689) { in main()
833 if (Format == ScanningOutputFormat::Full) in main()
835 else if (Format == ScanningOutputFormat::P1689) in main()
/openbsd-src/gnu/llvm/clang/lib/Tooling/DependencyScanning/
H A DDependencyScanningWorker.cpp150 ScanningOutputFormat Format, bool OptimizeArgs, bool EagerLoadModules, in DependencyScanningAction()
245 case ScanningOutputFormat::Make: in runInvocation()
250 case ScanningOutputFormat::P1689: in runInvocation()
251 case ScanningOutputFormat::Full: in runInvocation()
255 Format == ScanningOutputFormat::P1689); in runInvocation()
304 ScanningOutputFormat Format;
H A DDependencyScanningService.cpp17 ScanningMode Mode, ScanningOutputFormat Format, bool OptimizeArgs, in DependencyScanningService()