| /freebsd/usr.bin/c89/ |
| H A D | c89.c | 64 int Argc, i; in main() local 71 Argc = 0; in main() 75 Argv.a[Argc++] = CC; in main() 77 Argv.a[Argc++] = args_prepended[j]; in main() 96 Argv.a[Argc++] = argv[i]; in main()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | InitLLVM.h | 38 LLVM_ABI InitLLVM(int &Argc, const char **&Argv, 40 InitLLVM(int &Argc, char **&Argv, bool InstallPipeSignalExitHandler = true) 41 : InitLLVM(Argc, const_cast<const char **&>(Argv), in InitLLVM() argument
|
| H A D | CommandLine.h | 2248 LLVM_ABI bool expandResponseFiles(int Argc, const char *const *Argv, 2262 LLVM_ABI bool expandResponseFiles(int Argc, const char *const *Argv,
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | InitLLVM.cpp | 47 InitLLVM::InitLLVM(int &Argc, const char **&Argv, in InitLLVM() argument 67 StackPrinter.emplace(Argc, Argv); in InitLLVM() 104 Argc = Args.size() - 1; in InitLLVM()
|
| H A D | CommandLine.cpp | 1354 bool cl::expandResponseFiles(int Argc, const char *const *Argv, in expandResponseFiles() argument 1368 NewArgv.append(Argv + 1, Argv + Argc); in expandResponseFiles()
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-tapi-diff/ |
| H A D | llvm-tapi-diff.cpp | |
| /freebsd/usr.bin/patch/ |
| H A D | patch.c | 122 static int Argc; /* guess */ variable 206 Argc = argc; in main() 393 Argc = Argc_last; in main() 560 Argc_last = Argc; in get_some_switches() 562 if (!Argc) in get_some_switches() 565 while ((ch = getopt_long(Argc, Argv, options, longopts, NULL)) != -1) { in get_some_switches() 672 Argc -= optind; in get_some_switches() 675 if (Argc > 0) { in get_some_switches() 677 Argc--; in get_some_switches() 678 while (Argc > 0) { in get_some_switches() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/Tooling/ |
| H A D | CompilationDatabase.cpp | 319 FixedCompilationDatabase::loadFromCommandLine(int &Argc, in loadFromCommandLine() argument 324 if (Argc == 0) in loadFromCommandLine() 326 const char *const *DoubleDash = std::find(Argv, Argv + Argc, StringRef("--")); in loadFromCommandLine() 327 if (DoubleDash == Argv + Argc) in loadFromCommandLine() 329 std::vector<const char *> CommandLine(DoubleDash + 1, Argv + Argc); in loadFromCommandLine() 330 Argc = DoubleDash - Argv; in loadFromCommandLine()
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/ |
| H A D | FuzzerUtilFuchsia.cpp | 486 size_t Argc = Args.size(); in ExecuteCommand() local 487 assert(Argc != 0); in ExecuteCommand() 488 std::unique_ptr<const char *[]> Argv(new const char *[Argc + 1]); in ExecuteCommand() 489 for (size_t i = 0; i < Argc; ++i) in ExecuteCommand() 491 Argv[Argc] = nullptr; in ExecuteCommand()
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-dwarfutil/ |
| H A D | llvm-dwarfutil.cpp | 475 int main(int Argc, char const *Argv[]) { in main() argument 478 InitLLVM X(Argc, Argv); in main() 485 ArrayRef<const char *> ArgsArr = ArrayRef(Argv + 1, Argc - 1); in main()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Tooling/ |
| H A D | CompilationDatabase.h | 184 loadFromCommandLine(int &Argc, const char *const *Argv, std::string &ErrorMsg,
|
| /freebsd/contrib/llvm-project/clang/tools/driver/ |
| H A D | driver.cpp | 236 int clang_main(int Argc, char **Argv, const llvm::ToolContext &ToolContext) { in clang_main() argument 241 SmallVector<const char *, 256> Args(Argv, Argv + Argc); in clang_main()
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-symbolizer/ |
| H A D | llvm-symbolizer.cpp | 385 static opt::InputArgList parseOptions(int Argc, char *Argv[], bool IsAddr2Line, in parseOptions() argument 395 Tbl.parseArgs(Argc, Argv, OPT_UNKNOWN, Saver, [&](StringRef Msg) { in parseOptions()
|
| /freebsd/contrib/llvm-project/llvm/lib/Option/ |
| H A D | OptTable.cpp | 582 InputArgList OptTable::parseArgs(int Argc, char *const *Argv, in parseArgs() argument 588 cl::expandResponseFiles(Argc, Argv, EnvVar, Saver, NewArgv); in parseArgs()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Option/ |
| H A D | OptTable.h | 395 InputArgList parseArgs(int Argc, char *const *Argv, OptSpecifier Unknown,
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
| H A D | llvm-pdbutil.cpp | 1458 int main(int Argc, const char **Argv) { in main() argument 1459 InitLLVM X(Argc, Argv); in main() 1464 cl::ParseCommandLineOptions(Argc, Argv, "LLVM PDB Dumper\n"); in main()
|