/freebsd/contrib/llvm-project/clang/lib/Tooling/ |
H A D | Tooling.cpp | 271 void addTargetAndModeForProgramName(std::vector<std::string> &CommandLine, in addTargetAndModeForProgramName() argument 273 if (CommandLine.empty() || InvokedAs.empty()) in addTargetAndModeForProgramName() 292 for (auto Token = ++CommandLine.begin(); Token != CommandLine.end(); in addTargetAndModeForProgramName() 300 CommandLine.insert(++CommandLine.begin(), TargetMode.DriverMode); in addTargetAndModeForProgramName() 303 CommandLine.insert(++CommandLine.begin(), in addTargetAndModeForProgramName() 308 void addExpandedResponseFiles(std::vector<std::string> &CommandLine, in addExpandedResponseFiles() argument 314 Argv.reserve(CommandLine.size()); in addExpandedResponseFiles() 315 for (auto &Arg : CommandLine) { in addExpandedResponseFiles() 330 CommandLine = std::move(ExpandedArgv); in addExpandedResponseFiles() 353 std::vector<std::string> CommandLine, ToolAction *Action, in ToolInvocation() argument [all …]
|
H A D | GuessTargetAndModeCompilationDatabase.cpp | 41 if (Cmd.CommandLine.empty()) in addTargetAndMode() 43 addTargetAndModeForProgramName(Cmd.CommandLine, Cmd.CommandLine.front()); in addTargetAndMode()
|
H A D | LocateToolCompilationDatabase.cpp | 43 if (Cmd.CommandLine.empty()) in addLocation() 45 std::string &Driver = Cmd.CommandLine.front(); in addLocation()
|
H A D | JSONCompilationDatabase.cpp | 54 CommandLineArgumentParser(StringRef CommandLine) in CommandLineArgumentParser() argument 55 : Input(CommandLine), Position(Input.begin()-1) {} in CommandLineArgumentParser() 62 CommandLine.push_back(Argument); in parse() 64 return CommandLine; in parse() 132 std::vector<std::string> CommandLine; member in __anon476ab3930111::CommandLineArgumentParser
|
H A D | CommonOptionsParser.cpp | 79 Command.CommandLine = Adjuster(Command.CommandLine, Command.Filename); in adjustCommands()
|
H A D | ExpandResponseFilesCompilationDatabase.cpp | 53 tooling::addExpandedResponseFiles(Cmd.CommandLine, Cmd.Directory, in expand()
|
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/ |
H A D | CompilationDatabase.h | 47 std::vector<std::string> CommandLine, const Twine &Output) in CompileCommand() 49 CommandLine(std::move(CommandLine)), Output(Output.str()) {} in CompileCommand() 58 std::vector<std::string> CommandLine; member 70 LHS.CommandLine == RHS.CommandLine && LHS.Output == RHS.Output && 200 ArrayRef<std::string> CommandLine);
|
/freebsd/sys/contrib/dev/acpica/components/debugger/ |
H A D | dbinput.c | 905 char *CommandLine; in AcpiDbCommandDispatch() local 1063 CommandLine = AcpiDbGetFromHistory (AcpiGbl_DbArgs[1]); in AcpiDbCommandDispatch() 1064 if (!CommandLine) in AcpiDbCommandDispatch() 1069 Status = AcpiDbCommandDispatch (CommandLine, WalkState, Op); in AcpiDbCommandDispatch() 1074 CommandLine = AcpiDbGetFromHistory (NULL); in AcpiDbCommandDispatch() 1075 if (!CommandLine) in AcpiDbCommandDispatch() 1080 Status = AcpiDbCommandDispatch (CommandLine, WalkState, Op); in AcpiDbCommandDispatch()
|
H A D | dbhistry.c | 194 char *CommandLine) in AcpiDbAddToHistory() argument 201 CmdLen = (UINT16) strlen (CommandLine); in AcpiDbAddToHistory() 227 CommandLine); in AcpiDbAddToHistory()
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/ |
H A D | DependencyScanningWorker.cpp | 508 StringRef WorkingDirectory, const std::vector<std::string> &CommandLine, in computeDependencies() argument 512 for (const std::string &Arg : CommandLine) in computeDependencies() 523 if (computeDependencies(WorkingDirectory, CommandLine, Consumer, Controller, in computeDependencies() 571 std::vector<std::string> CommandLine, DependencyScanningAction &Action, in createAndRunToolInvocation() argument 577 std::string Executable = CommandLine[0]; in createAndRunToolInvocation() 578 ToolInvocation Invocation(std::move(CommandLine), &Action, &FM, in createAndRunToolInvocation() 591 StringRef WorkingDirectory, const std::vector<std::string> &CommandLine, in computeDependencies() argument 619 ModifiedCommandLine = CommandLine; in computeDependencies() 624 ModifiedCommandLine ? *ModifiedCommandLine : CommandLine; in computeDependencies()
|
/freebsd/contrib/llvm-project/llvm/tools/bugpoint/ |
H A D | ToolRunner.cpp | 15 #include "llvm/Support/CommandLine.h" 332 // Tokenize the CommandLine to the command and the args to allow 354 const std::string &CommandLine, std::string &CmdPath, in lexCommand() argument 363 for (std::size_t Pos = 0u; Pos <= CommandLine.size(); ++Pos) { in lexCommand() 364 if ('\\' == CommandLine[Pos]) { in lexCommand() 365 if (Pos + 1 < CommandLine.size()) in lexCommand() 366 Token.push_back(CommandLine[++Pos]); in lexCommand() 370 if (' ' == CommandLine[Pos] || CommandLine.size() == Pos) { in lexCommand() 385 Token.push_back(CommandLine[Po in lexCommand() [all...] |
/freebsd/contrib/llvm-project/lld/MachO/ |
H A D | Driver.cpp | 262 CommandLine, // Library was passed as a regular CLI argument enumerator 347 case LoadType::CommandLine: in addFile() 577 addFile(rerootPath(path), LoadType::CommandLine, isLazy); in addFileList() 1220 addFile(rerootPath(arg->getValue()), LoadType::CommandLine, isLazy); in createFiles() 1224 addFile(rerootPath(arg->getValue()), LoadType::CommandLine))) in createFiles() 1229 addFile(rerootPath(arg->getValue()), LoadType::CommandLine))) { in createFiles() 1236 addFile(rerootPath(arg->getValue()), LoadType::CommandLine))) in createFiles() 1246 addFile(rerootPath(arg->getValue()), LoadType::CommandLine, in createFiles() 1258 /*isExplicit=*/true, LoadType::CommandLine); in createFiles() 1267 LoadType::CommandLine); in createFiles() [all …]
|
/freebsd/sys/contrib/dev/acpica/include/ |
H A D | acdebug.h | 519 char *CommandLine);
|
/freebsd/lib/clang/libllvmminimal/ |
H A D | Makefile | 14 SRCS+= Support/CommandLine.cpp
|
/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/ |
H A D | FuzzerDriver.cpp | 241 std::string CommandLine = Cmd.toString(); in WorkerThread() local 242 Printf("%s\n", CommandLine.c_str()); in WorkerThread()
|
/freebsd/contrib/ntp/sntp/libevent/ |
H A D | event_rpcgen.py | 1829 class CommandLine(object): class 1910 CommandLine(argv=argv).run()
|
H A D | ChangeLog-2.0 | 504 o add a requested docstring for event_rpcgen.CommandLine.__init__ (f1250eb)
|
/freebsd/contrib/libevent/ |
H A D | event_rpcgen.py | 1829 class CommandLine(object): class 1910 CommandLine(argv=argv).run()
|
/freebsd/contrib/llvm-project/llvm/lib/Support/Windows/ |
H A D | Process.inc | 14 #include "llvm/Support/CommandLine.h"
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/ |
H A D | ObjdumpOpts.td | 140 …te<["-"], "mllvm">, HelpText<"Specify an argument to forward to LLVM's CommandLine library">, Meta…
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
H A D | TypeRecord.h | 683 CommandLine, ///< Full canonical command line (maybe -cc1) enumerator
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
H A D | AsmPrinter.cpp | 3010 MCSection *CommandLine = getObjFileLowering().getSectionForCommandLines(); in emitModuleCommandLines() local 3011 if (!CommandLine) in emitModuleCommandLines() 3019 OutStreamer->switchSection(CommandLine); in emitModuleCommandLines()
|
H A D | CodeViewDebug.cpp | 953 BuildInfoArgs[BuildInfoRecord::CommandLine] = getStringIdTypeIdx( in emitBuildInfo()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CodeGenModule.cpp | 7450 std::string CommandLine = getCodeGenOpts().RecordCommandLine; in EmitCommandLineMetadata() local 7453 llvm::Metadata *CommandLineNode[] = {llvm::MDString::get(Ctx, CommandLine)}; in EmitCommandLineMetadata()
|
/freebsd/lib/clang/libllvm/ |
H A D | Makefile | 1117 SRCS_MIN+= Support/CommandLine.cpp
|