| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Tooling/ |
| H A D | CompilationDatabase.h | 47 std::vector<std::string> CommandLine, Twine Output) in CompileCommand() 49 CommandLine(std::move(CommandLine)), Output(Output.str()){} in CompileCommand() 58 std::vector<std::string> CommandLine; member 65 LHS.CommandLine == RHS.CommandLine && LHS.Output == RHS.Output; 188 FixedCompilationDatabase(Twine Directory, ArrayRef<std::string> CommandLine);
|
| H A D | Tooling.h | 246 ToolInvocation(std::vector<std::string> CommandLine, FrontendAction *FAction, 258 ToolInvocation(std::vector<std::string> CommandLine, ToolAction *Action, 289 std::vector<std::string> CommandLine; variable 493 void addTargetAndModeForProgramName(std::vector<std::string> &CommandLine,
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Tooling/ |
| H A D | Tooling.cpp | 223 if (!CommandLine.empty() && !InvokedAs.empty()) { in addTargetAndModeForProgramName() 227 for (auto Token = ++CommandLine.begin(); Token != CommandLine.end(); in addTargetAndModeForProgramName() 238 CommandLine.insert(++CommandLine.begin(), TargetMode.DriverMode); in addTargetAndModeForProgramName() 241 CommandLine.insert(++CommandLine.begin(), {"-target", in addTargetAndModeForProgramName() 264 std::vector<std::string> CommandLine, ToolAction *Action, in ToolInvocation() argument 266 : CommandLine(std::move(CommandLine)), Action(Action), OwnsAction(false), in ToolInvocation() 272 : CommandLine(std::move(CommandLine)), in ToolInvocation() 289 for (const std::string &Str : CommandLine) in run() 497 std::vector<std::string> CommandLine = CompileCommand.CommandLine; in run() local 499 CommandLine = ArgsAdjuster(CommandLine, CompileCommand.Filename); in run() [all …]
|
| H A D | InterpolatingCompilationDatabase.cpp | 136 ClangCLMode(checkIsCLMode(Cmd.CommandLine)) { in TransferableCommand() 137 std::vector<std::string> OldArgs = std::move(Cmd.CommandLine); in TransferableCommand() 138 Cmd.CommandLine.clear(); in TransferableCommand() 154 Cmd.CommandLine.emplace_back(OldArgs.front()); in TransferableCommand() 190 Cmd.CommandLine.insert(Cmd.CommandLine.end(), in TransferableCommand() 216 Result.CommandLine.push_back(Flag); in transferTo() 218 Result.CommandLine.push_back("-x"); in transferTo() 219 Result.CommandLine.push_back(types::getTypeName(TargetType)); in transferTo() 225 Result.CommandLine.emplace_back(( in transferTo() 229 Result.CommandLine.push_back(Filename); in transferTo()
|
| H A D | CompilationDatabase.cpp | 354 std::vector<const char *> CommandLine(DoubleDash + 1, Argv + Argc); in loadFromCommandLine() local 358 if (!stripPositionalArgs(CommandLine, StrippedArgs, ErrorMsg)) in loadFromCommandLine() 379 FixedCompilationDatabase(Twine Directory, ArrayRef<std::string> CommandLine) { in FixedCompilationDatabase() argument 382 CommandLine.begin(), CommandLine.end()); in FixedCompilationDatabase() 391 Result[0].CommandLine.push_back(FilePath); in getCompileCommands()
|
| H A D | JSONCompilationDatabase.cpp | 52 CommandLineArgumentParser(StringRef CommandLine) in CommandLineArgumentParser() argument 53 : Input(CommandLine), Position(Input.begin()-1) {} in CommandLineArgumentParser() 60 CommandLine.push_back(Argument); in parse() 62 return CommandLine; in parse() 130 std::vector<std::string> CommandLine; member in __anon3f1e07e20111::CommandLineArgumentParser
|
| H A D | CommonOptionsParser.cpp | 80 Command.CommandLine = Adjuster(Command.CommandLine, Command.Filename); in adjustCommands()
|
| /freebsd-12.1/sys/contrib/dev/acpica/components/debugger/ |
| H A D | dbinput.c | 882 char *CommandLine; in AcpiDbCommandDispatch() local 1019 CommandLine = AcpiDbGetFromHistory (AcpiGbl_DbArgs[1]); in AcpiDbCommandDispatch() 1020 if (!CommandLine) in AcpiDbCommandDispatch() 1025 Status = AcpiDbCommandDispatch (CommandLine, WalkState, Op); in AcpiDbCommandDispatch() 1030 CommandLine = AcpiDbGetFromHistory (NULL); in AcpiDbCommandDispatch() 1031 if (!CommandLine) in AcpiDbCommandDispatch() 1036 Status = AcpiDbCommandDispatch (CommandLine, WalkState, Op); in AcpiDbCommandDispatch()
|
| H A D | dbhistry.c | 195 char *CommandLine) in AcpiDbAddToHistory() argument 202 CmdLen = (UINT16) strlen (CommandLine); in AcpiDbAddToHistory() 228 CommandLine); in AcpiDbAddToHistory()
|
| /freebsd-12.1/contrib/llvm/tools/bugpoint/ |
| H A D | ToolRunner.cpp | 355 const std::string &CommandLine, std::string &CmdPath, in lexCommand() argument 364 for (std::size_t Pos = 0u; Pos <= CommandLine.size(); ++Pos) { in lexCommand() 365 if ('\\' == CommandLine[Pos]) { in lexCommand() 366 if (Pos + 1 < CommandLine.size()) in lexCommand() 367 Token.push_back(CommandLine[++Pos]); in lexCommand() 371 if (' ' == CommandLine[Pos] || CommandLine.size() == Pos) { in lexCommand() 386 Token.push_back(CommandLine[Pos]); in lexCommand()
|
| /freebsd-12.1/contrib/compiler-rt/lib/fuzzer/ |
| H A D | FuzzerDriver.cpp | 220 std::string CommandLine = Cmd.toString(); in WorkerThread() local 221 Printf("%s\n", CommandLine.c_str()); in WorkerThread() 396 std::string CommandLine = Cmd.toString(); in MinimizeCrashInput() local 397 Printf("CRASH_MIN: executing: %s\n", CommandLine.c_str()); in MinimizeCrashInput() 416 CommandLine = Cmd.toString(); in MinimizeCrashInput() 417 Printf("CRASH_MIN: executing: %s\n", CommandLine.c_str()); in MinimizeCrashInput()
|
| /freebsd-12.1/lib/clang/libllvmminimal/ |
| H A D | Makefile | 14 SRCS+= Support/CommandLine.cpp
|
| /freebsd-12.1/contrib/llvm/include/llvm/MC/ |
| H A D | MCTargetOptionsCommandFlags.inc | 19 #include "llvm/Support/CommandLine.h"
|
| /freebsd-12.1/sys/contrib/dev/acpica/include/ |
| H A D | acdebug.h | 508 char *CommandLine);
|
| /freebsd-12.1/contrib/libevent/ |
| H A D | event_rpcgen.py | 1635 class CommandLine: class 1713 CommandLine(sys.argv).run()
|
| H A D | ChangeLog-2.0 | 504 o add a requested docstring for event_rpcgen.CommandLine.__init__ (f1250eb)
|
| /freebsd-12.1/contrib/ntp/sntp/libevent/ |
| H A D | event_rpcgen.py | 1635 class CommandLine: class 1713 CommandLine(sys.argv).run()
|
| H A D | ChangeLog-2.0 | 504 o add a requested docstring for event_rpcgen.CommandLine.__init__ (f1250eb)
|
| /freebsd-12.1/contrib/llvm/lib/Support/Windows/ |
| H A D | Process.inc | 15 #include "llvm/Support/CommandLine.h"
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | AsmPrinter.cpp | 2015 MCSection *CommandLine = getObjFileLowering().getSectionForCommandLines(); in EmitModuleCommandLines() local 2016 if (!CommandLine) in EmitModuleCommandLines() 2024 OutStreamer->SwitchSection(CommandLine); in EmitModuleCommandLines()
|
| /freebsd-12.1/contrib/llvm/include/llvm/CodeGen/ |
| H A D | CommandFlags.inc | 23 #include "llvm/Support/CommandLine.h"
|
| /freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | TypeRecord.h | 689 CommandLine, ///< Full canonical command line (maybe -cc1) enumerator
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/ |
| H A D | CodeGenModule.cpp | 5240 std::string CommandLine = getCodeGenOpts().RecordCommandLine; in EmitCommandLineMetadata() local 5243 llvm::Metadata *CommandLineNode[] = {llvm::MDString::get(Ctx, CommandLine)}; in EmitCommandLineMetadata()
|
| /freebsd-12.1/lib/clang/libllvm/ |
| H A D | Makefile | 786 SRCS_MIN+= Support/CommandLine.cpp
|