| /openbsd-src/gnu/llvm/llvm/tools/llvm-objcopy/ |
| H A D | ObjcopyOptions.cpp | 603 SmallVector<const char *, 2> Positional; in parseObjcopyOptions() local 610 Positional.push_back(Arg->getValue()); in parseObjcopyOptions() 611 std::copy(DashDash, RawArgsArr.end(), std::back_inserter(Positional)); in parseObjcopyOptions() 613 if (Positional.empty()) in parseObjcopyOptions() 616 if (Positional.size() > 2) in parseObjcopyOptions() 625 Config.InputFilename = Positional[0]; in parseObjcopyOptions() 626 Config.OutputFilename = Positional[Positional.size() == 1 ? 0 : 1]; in parseObjcopyOptions() 1139 SmallVector<StringRef, 2> Positional; in parseInstallNameToolOptions() local 1144 Positional.push_back(Arg->getValue()); in parseInstallNameToolOptions() 1145 if (Positional.empty()) in parseInstallNameToolOptions() [all …]
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-diff/ |
| H A D | llvm-diff.cpp | 61 static cl::opt<std::string> LeftFilename(cl::Positional, 64 static cl::opt<std::string> RightFilename(cl::Positional, 67 static cl::list<std::string> GlobalsToCompare(cl::Positional,
|
| /openbsd-src/gnu/llvm/llvm/utils/fpcmp/ |
| H A D | fpcmp.cpp | 21 File1(cl::Positional, cl::desc("<input file #1>"), cl::Required); 23 File2(cl::Positional, cl::desc("<input file #2>"), cl::Required);
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-tapi-diff/ |
| H A D | llvm-tapi-diff.cpp | 29 cl::opt<std::string> InputFileNameLHS(cl::Positional, cl::desc("<first file>"), 31 cl::opt<std::string> InputFileNameRHS(cl::Positional, cl::desc("<second file>"),
|
| /openbsd-src/gnu/llvm/llvm/examples/OrcV2Examples/LLJITWithGDBRegistrationListener/ |
| H A D | LLJITWithGDBRegistrationListener.cpp | 37 static cl::list<std::string> InputFiles(cl::Positional, cl::OneOrMore, 40 static cl::list<std::string> InputArgv("args", cl::Positional,
|
| /openbsd-src/gnu/llvm/llvm/tools/bugpoint/ |
| H A D | ExecutionDriver.cpp | 106 cl::list<std::string> InputArgv("args", cl::Positional, 116 cl::list<std::string> ToolArgv("tool-args", cl::Positional, 120 cl::list<std::string> SafeToolArgv("safe-tool-args", cl::Positional, 127 cl::list<std::string> CCToolArgv("gcc-tool-args", cl::Positional,
|
| /openbsd-src/gnu/llvm/llvm/examples/OrcV2Examples/LLJITWithRemoteDebugging/ |
| H A D | LLJITWithRemoteDebugging.cpp | 102 static cl::list<std::string> InputFiles(cl::Positional, cl::OneOrMore, 106 static cl::list<std::string> InputArgv("args", cl::Positional,
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-cxxmap/ |
| H A D | llvm-cxxmap.cpp | 30 cl::opt<std::string> OldSymbolFile(cl::Positional, cl::Required, 33 cl::opt<std::string> NewSymbolFile(cl::Positional, cl::Required,
|
| /openbsd-src/gnu/llvm/llvm/examples/SpeculativeJIT/ |
| H A D | SpeculativeJIT.cpp | 27 static cl::list<std::string> InputFiles(cl::Positional, cl::OneOrMore, 30 static cl::list<std::string> InputArgv("args", cl::Positional,
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-cfi-verify/ |
| H A D | llvm-cfi-verify.cpp | 38 cl::opt<std::string> InputFilename(cl::Positional, cl::desc("<input file>"), 40 cl::opt<std::string> IgnorelistFilename(cl::Positional,
|
| /openbsd-src/gnu/llvm/llvm/utils/split-file/ |
| H A D | split-file.cpp | 32 static cl::opt<std::string> input(cl::Positional, cl::desc("filename"), 35 static cl::opt<std::string> output(cl::Positional, cl::desc("directory"),
|
| /openbsd-src/gnu/llvm/clang/tools/apinotes-test/ |
| H A D | APINotesTest.cpp | 17 static llvm::cl::list<std::string> APINotes(llvm::cl::Positional,
|
| /openbsd-src/gnu/llvm/clang/tools/diagtool/ |
| H A D | FindDiagnosticID.cpp | 46 llvm::cl::Positional, llvm::cl::desc("<diagnostic-name>"), in run()
|
| /openbsd-src/gnu/llvm/clang/tools/clang-diff/ |
| H A D | ClangDiff.cpp | 43 static cl::opt<std::string> SourcePath(cl::Positional, cl::desc("<source>"), 47 static cl::opt<std::string> DestinationPath(cl::Positional,
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-split/ |
| H A D | llvm-split.cpp | 30 static cl::opt<std::string> InputFilename(cl::Positional,
|
| /openbsd-src/gnu/llvm/lldb/tools/lldb-test/ |
| H A D | lldb-test.cpp | 81 static cl::opt<std::string> Target(cl::Positional, cl::desc("<target>"), 83 static cl::opt<std::string> CommandFile(cl::Positional, 105 cl::list<std::string> InputFilenames(cl::Positional, cl::desc("<input files>"), 140 static cl::opt<std::string> InputFile(cl::Positional, cl::desc("<input file>"), 153 static cl::opt<std::string> InputFile(cl::Positional, cl::desc("<input file>"), 255 static cl::opt<std::string> Target(cl::Positional, cl::desc("<target>"), 258 static cl::opt<std::string> CommandFile(cl::Positional,
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-cat/ |
| H A D | llvm-cat.cpp | 46 static cl::list<std::string> InputFilenames(cl::Positional,
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-modextract/ |
| H A D | llvm-modextract.cpp | 37 static cl::opt<std::string> InputFilename(cl::Positional,
|
| /openbsd-src/gnu/llvm/llvm/examples/OrcV2Examples/LLJITWithLazyReexports/ |
| H A D | LLJITWithLazyReexports.cpp | 89 cl::list<std::string> InputArgv(cl::Positional,
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-debuginfod-find/ |
| H A D | llvm-debuginfod-find.cpp | 28 cl::opt<std::string> InputBuildID(cl::Positional, cl::Required,
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-debuginfod/ |
| H A D | llvm-debuginfod.cpp | 28 static cl::list<std::string> ScanPaths(cl::Positional,
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-mc-disassemble-fuzzer/ |
| H A D | llvm-mc-disassemble-fuzzer.cpp | 45 FuzzerArgs("fuzzer-args", cl::Positional,
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-cov/ |
| H A D | TestingSupport.cpp | 24 cl::opt<std::string> InputSourceFile(cl::Positional, cl::Required, in convertForTestingMain()
|
| /openbsd-src/gnu/llvm/llvm/examples/OrcV2Examples/LLJITWithExecutorProcessControl/ |
| H A D | LLJITWithExecutorProcessControl.cpp | 123 cl::list<std::string> InputArgv(cl::Positional,
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-bcanalyzer/ |
| H A D | llvm-bcanalyzer.cpp | 43 static cl::opt<std::string> InputFilename(cl::Positional,
|