| /src/external/apache2/llvm/dist/llvm/utils/lit/lit/ |
| ShCommands.py | 1 class Command: 7 return 'Command(%r, %r)' % (self.args, self.redirects) 10 if not isinstance(other, Command): 46 if not isinstance(other, Command):
|
| /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/ |
| FuzzerCommand.h | 9 // FuzzerCommand represents a command to run in a subprocess. It allows callers 10 // to manage command line arguments and output and error streams. 26 class Command final { 28 // This command line flag is used to indicate that the remaining command line 35 Command() : CombinedOutAndErr(false) {} 37 explicit Command(const Vector<std::string> &ArgsToAdd) 40 explicit Command(const Command &Other) 44 Command &operator=(const Command &Other) [all...] |
| /src/sys/external/bsd/acpica/dist/debugger/ |
| dbhistry.c | 3 * Module Name: dbhistry - debugger HISTORY command 60 char *Command; 76 * PARAMETERS: CommandLine - Command to add 80 * DESCRIPTION: Add a command line to the history buffer. 91 /* Put command into the next available slot */ 99 if (AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command != NULL) 102 AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command); 107 Command); 108 AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command = 114 AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Driver/ |
| Job.cpp | 1 //===- Job.cpp - Command to Execute ---------------------------------------===// 38 Command::Command(const Action &Source, const Tool &Creator, 106 void Command::writeResponseFile(raw_ostream &OS) const { 132 void Command::buildArgvForResponseFile( 201 void Command::Print(raw_ostream &OS, const char *Terminator, bool Quote, 291 void Command::setResponseFile(const char *FileName) { 297 void Command::setEnvironment(llvm::ArrayRef<const char *> NewEnvironment) { 303 void Command::PrintFileNames() const { 311 int Command::Execute(ArrayRef<llvm::Optional<StringRef>> Redirects [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Driver/ |
| Job.h | 40 // Encodes the kind of response file supported for a command invocation. 41 // Response files are necessary if the command line gets too large, requiring 52 // command line. 71 /// What prefix to use for the command-line argument when passing a response 103 /// Command - An executable path/name and argument vector to 105 class Command { 128 /// Response file name, if this command is set to use one, or nullptr 140 /// See Command::setEnvironment 147 /// exclusive file, while others remains as regular command line arguments. 148 /// This functions fills a vector with the regular command line arguments [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Tooling/ |
| JSONCompilationDatabase.cpp | 48 /// A parser for escaped strings of command line arguments. 141 // Assume Windows command line parsing on Win32 unless the triple 355 llvm::Optional<std::vector<llvm::yaml::ScalarNode *>> Command; 378 Command = std::vector<llvm::yaml::ScalarNode *>(); 385 Command->push_back(Scalar); 394 } else if (KeyValue == "command") { 395 if (!Command) 396 Command = std::vector<llvm::yaml::ScalarNode *>(1, ValueString); 412 if (!Command) { 413 ErrorMessage = "Missing key: \"command\" or \"arguments\"." [all...] |
| /src/external/apache2/llvm/dist/clang/tools/clang-scan-deps/ |
| ClangScanDeps.cpp | 52 /// associated with the given invocation command or empty string if the 142 // Command lines will contain arguments specifying modulemap file paths and 162 "modules-related paths in the generated command lines: " 207 : Command(std::move(Cmd)) {} 211 return {Command}; 215 return {Command}; 219 tooling::CompileCommand Command; 326 {"command-line", 345 {"command-line", I.AdditionalCommandLine}, 437 // The command options are rewritten to run Clang in preprocessor only mode [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/Symbolize/ |
| DIPrinter.cpp | 262 StringRef Command) { 263 OS << Command << '\n'; 368 StringRef Command) { 370 StringError("unable to parse arguments: " + Command,
|
| /src/external/apache2/llvm/dist/llvm/tools/bugpoint/ |
| ToolRunner.cpp | 234 // Custom compiler command implementation of AbstractIntepreter interface 236 // Allows using a custom command for compiling the bitcode, thus allows, for 286 // Custom execution command implementation of AbstractIntepreter interface 288 // Allows using a custom command for executing the bitcode, thus allows, 332 // Tokenize the CommandLine to the command and the args to allow 333 // defining a full command line as the command instead of just the 334 // executed program. We cannot just pass the whole string after the command 336 // command line argument (with spaces in it: "foo bar" instead 358 std::string Command; [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-symbolizer/ |
| llvm-symbolizer.cpp | 96 enum class Command { 103 StringRef InputString, Command &Cmd, 108 Cmd = Command::Code; 110 Cmd = Command::Data; 112 Cmd = Command::Frame; 115 Cmd = Command::Code; 152 Command Cmd; 162 if (Cmd == Command::Data) { 166 } else if (Cmd == Command::Frame) {
|
| /src/sys/arch/amiga/dev/ |
| mscreg.h | 120 u_char Command; /* command byte - see MSCCMD */ 173 #define MSCCMD_CMask 0xf /* command mask */
|
| /src/sys/external/bsd/gnu-efi/dist/inc/ |
| pci22.h | 34 // Command 42 UINT16 Command;
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-cov/ |
| CodeCoverage.cpp | 9 // The 'CodeCoverageTool' class implements a command line tool to analyze and 57 enum Command { 58 /// The show command. 60 /// The report command. 62 /// The export command. 66 int run(Command Cmd, int argc, const char **argv); 619 int CodeCoverageTool::run(Command Cmd, int argc, const char **argv) {
|
| /src/external/apache2/llvm/dist/clang/lib/AST/ |
| CommentSema.cpp | 62 void Sema::actOnBlockCommandArgs(BlockCommandComment *Command, 64 Command->setArgs(Args); 67 void Sema::actOnBlockCommandFinish(BlockCommandComment *Command, 69 Command->setParagraph(Paragraph); 70 checkBlockCommandEmptyParagraph(Command); 71 checkBlockCommandDuplicate(Command); 75 checkReturnsCommand(Command); 76 checkDeprecatedCommand(Command); 85 ParamCommandComment *Command = 90 Diag(Command->getLocation() [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-ar/ |
| llvm-ar.cpp | 229 // command line. 236 // on the command line. 242 // Extract the member filename from the command line for the [relpos] argument 251 // Extract the parameter from the command line for the [count] argument 264 // Get the archive file name from the command line 287 // Parse the command line options as presented and return the operation 410 // At this point, the next thing on the command line must be 414 // Everything on the command line at this point is a member. 1054 auto Command = StringSwitch<MRICommand>(CommandStr.lower()) 1064 switch (Command) { [all...] |
| /src/external/apache2/llvm/dist/llvm/utils/TableGen/ |
| AsmWriterEmitter.cpp | 182 std::string Command = " "+Inst.Operands[0].getCode(PassSubtarget)+"\n"; 184 // Check to see if we already have 'Command' in UniqueOperandCommands. 186 auto I = llvm::find(UniqueOperandCommands, Command); 193 UniqueOperandCommands.push_back(std::move(Command)); 198 // This command matches one operand so far. 204 // that uses it. If the next command of all instructions in the set are 205 // identical, fold it into the command. 215 // into this command. 219 // Otherwise, scan to see if all of the other instructions in this command 228 // Okay, everything in this command set has the same next operand. Add i [all...] |
| /src/external/gpl3/binutils/dist/gprofng/src/ |
| Command.h | 36 // be defined as the last command for which a help line will exist 37 // Command.cc has a matching list, and the ordering in 40 // for the help command, and the entry for HHELP is the last 205 HHELP, // this is the last command listed with "xhelp" 206 NO_CMD, // Dummy command, used for headers in help 207 DUMMY_CMD, // Dummy command, used for help 227 const CmdType token; // command key 228 const char *str; // command string 229 const char *alt; // alternate command string 235 // Command class: never instantiated, completely stati [all...] |
| /src/external/gpl3/binutils.old/dist/gprofng/src/ |
| Command.h | 36 // be defined as the last command for which a help line will exist 37 // Command.cc has a matching list, and the ordering in 40 // for the help command, and the entry for HHELP is the last 205 HHELP, // this is the last command listed with "xhelp" 206 NO_CMD, // Dummy command, used for headers in help 207 DUMMY_CMD, // Dummy command, used for help 227 const CmdType token; // command key 228 const char *str; // command string 229 const char *alt; // alternate command string 235 // Command class: never instantiated, completely stati [all...] |
| /src/usr.bin/telnet/ |
| commands.c | 113 const char *name; /* command name */ 115 int (*handler) /* routine which executes command */ 118 } Command; 168 static Command *getcmd(const char *); 192 /* save for shell command */ 302 * the "send" command. 313 int nbyte; /* Number of bytes to send this command */ 356 struct sendlist *s; /* pointer to current command */ 361 printf("need at least one argument for 'send' command\n"); 385 "Need %d argument%s to 'send %s' command. 'send %s ?' for help.\n" 2362 command(int top, const char *tbuf, int cnt) function [all...] |
| /src/sys/dev/ic/ |
| aacreg.h | 89 * We establish 4 command queues and matching response queues. Queues must 143 * AAC_MONKER_INITSTRUCT command to point it at our control structures. 162 u_int32_t MaxIoSize; /* largest I/O command */ 458 * Command status values 519 #define VM_DrvErrTblLog 21 /* drive error table/log type of command */ 542 u_int32_t Command; 555 * Container shutdown command. 558 u_int32_t Command; 563 * Container Config Command 567 u_int32_t Command; 1434 AAC_AifCommand command; \/* Tell host what type of member in struct:aac_aif_command [all...] |
| /src/sys/external/bsd/acpica/dist/include/ |
| actbl1.h | 243 UINT8 Command; 273 UINT8 Command; 287 UINT8 Command; 1534 ACPI_GENERIC_ADDRESS Control; /* Address of EC command/status register */ 1640 /* Command status return values */ 1753 /* Command status return values */
|
| actbl2.h | 1800 UINT16 Command; 3141 UINT16 Command; 3154 UINT32 Command; 3580 UINT16 Command; 3645 /* Channel Command flags */ 3699 UINT16 Command; 3723 UINT16 Command; 3789 /* Channel Command flags */
|
| /src/external/apache2/mDNSResponder/dist/Clients/dnssdutil/ |
| dnssdutil.c | 307 // Gerneral Command Options 310 // Command option macros 312 #define Command( NAME, CALLBACK, SUB_OPTIONS, SHORT_HELP, IS_NOTCOMMON ) \ 534 // Browse Command Options 569 // GetAddrInfo Command Options 612 // QueryRecord Command Options 665 // Register Command Options 743 // RegisterRecord Command Options 790 // Resolve Command Options 821 // Reconfirm Command Option [all...] |