Home
last modified time | relevance | path

Searched refs:Command (Results 1 – 25 of 202) sorted by relevance

123456789

/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDCommentSema.cpp62 void Sema::actOnBlockCommandArgs(BlockCommandComment *Command, in actOnBlockCommandArgs() argument
64 Command->setArgs(Args); in actOnBlockCommandArgs()
67 void Sema::actOnBlockCommandFinish(BlockCommandComment *Command, in actOnBlockCommandFinish() argument
69 Command->setParagraph(Paragraph); in actOnBlockCommandFinish()
70 checkBlockCommandEmptyParagraph(Command); in actOnBlockCommandFinish()
71 checkBlockCommandDuplicate(Command); in actOnBlockCommandFinish()
75 checkReturnsCommand(Command); in actOnBlockCommandFinish()
76 checkDeprecatedCommand(Command); in actOnBlockCommandFinish()
85 ParamCommandComment *Command = in actOnParamCommandStart() local
90 Diag(Command->getLocation(), in actOnParamCommandStart()
[all …]
HDCommentCommandTraits.cpp59 auto ConsiderCorrection = [&](const CommandInfo *Command) { in getTypoCorrectCommandInfo() argument
60 StringRef Name = Command->Name; in getTypoCorrectCommandInfo()
70 BestCommand.push_back(Command); in getTypoCorrectCommandInfo()
74 for (const auto &Command : Commands) in getTypoCorrectCommandInfo() local
75 ConsiderCorrection(&Command); in getTypoCorrectCommandInfo()
77 for (const auto *Command : RegisteredCommands) in getTypoCorrectCommandInfo() local
78 if (!Command->IsUnknownCommand) in getTypoCorrectCommandInfo()
79 ConsiderCorrection(Command); in getTypoCorrectCommandInfo()
/NextBSD/sys/contrib/dev/acpica/components/debugger/
HDdbhistry.c60 char *Command; member
100 if (AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command != NULL) in AcpiDbAddToHistory()
103 AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command); in AcpiDbAddToHistory()
108 Command); in AcpiDbAddToHistory()
109 AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command = in AcpiDbAddToHistory()
115 AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command = in AcpiDbAddToHistory()
119 strcpy (AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command, in AcpiDbAddToHistory()
177 if (AcpiGbl_HistoryBuffer[HistoryIndex].Command) in AcpiDbDisplayHistory()
181 AcpiGbl_HistoryBuffer[HistoryIndex].Command); in AcpiDbDisplayHistory()
257 return (AcpiGbl_HistoryBuffer[HistoryIndex].Command); in AcpiDbGetHistoryByIndex()
HDdbinput.c69 char *Command,
74 char *Command);
78 char *Command,
358 char *Command, in AcpiDbMatchCommandHelp() argument
379 while ((*Command) && (*Invocation) && (*Invocation != ' ')) in AcpiDbMatchCommandHelp()
381 if (tolower ((int) *Command) != tolower ((int) *Invocation)) in AcpiDbMatchCommandHelp()
387 Command++; in AcpiDbMatchCommandHelp()
420 char *Command, in AcpiDbDisplayCommandInfo() argument
430 Matched = AcpiDbMatchCommandHelp (Command, Next); in AcpiDbDisplayCommandInfo()
457 char *Command) in AcpiDbDisplayHelp() argument
[all …]
/NextBSD/contrib/llvm/tools/clang/include/clang/Driver/
HDJob.h26 class Command; variable
42 class Command {
81 Command(const Action &Source, const Tool &Creator, const char *Executable,
83 virtual ~Command() {} in ~Command()
116 class FallbackCommand : public Command {
120 std::unique_ptr<Command> Fallback_);
129 std::unique_ptr<Command> Fallback;
135 typedef SmallVector<std::unique_ptr<Command>, 4> list_type;
148 void addJob(std::unique_ptr<Command> J) { Jobs.push_back(std::move(J)); } in addJob()
HDCompilation.h97 void addCommand(std::unique_ptr<Command> C) { Jobs.addJob(std::move(C)); } in addCommand()
166 int ExecuteCommand(const Command &C, const Command *&FailingCommand) const;
174 SmallVectorImpl<std::pair<int, const Command *>> &FailingCommands) const;
HDDriver.h42 class Command; variable
198 void setUpResponseFiles(Compilation &C, Command &Cmd);
310 SmallVectorImpl< std::pair<int, const Command *> > &FailingCommands);
316 const Command &FailingCommand);
/NextBSD/contrib/llvm/tools/clang/lib/Driver/
HDJob.cpp28 Command::Command(const Action &Source, const Tool &Creator, in Command() function in Command
74 void Command::printArg(raw_ostream &OS, const char *Arg, bool Quote) { in printArg()
92 void Command::writeResponseFile(raw_ostream &OS) const { in writeResponseFile()
116 void Command::buildArgvForResponseFile( in buildArgvForResponseFile()
145 void Command::Print(raw_ostream &OS, const char *Terminator, bool Quote, in Print()
207 void Command::setResponseFile(const char *FileName) { in setResponseFile()
213 int Command::Execute(const StringRef **Redirects, std::string *ErrMsg, in Execute()
257 std::unique_ptr<Command> Fallback_) in FallbackCommand()
258 : Command(Source_, Creator_, Executable_, Arguments_), in FallbackCommand()
263 Command::Print(OS, "", Quote, CrashInfo); in Print()
[all …]
HDCompilation.cpp125 int Compilation::ExecuteCommand(const Command &C, in ExecuteCommand()
126 const Command *&FailingCommand) const { in ExecuteCommand()
170 typedef SmallVectorImpl< std::pair<int, const Command *> > FailingCommandList;
190 static bool InputsOk(const Command &C, in InputsOk()
200 const Command *FailingCommand = nullptr; in ExecuteJobs()
/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDCommentSema.h99 void actOnBlockCommandArgs(BlockCommandComment *Command,
102 void actOnBlockCommandFinish(BlockCommandComment *Command,
110 void actOnParamCommandDirectionArg(ParamCommandComment *Command,
115 void actOnParamCommandParamNameArg(ParamCommandComment *Command,
120 void actOnParamCommandFinish(ParamCommandComment *Command,
128 void actOnTParamCommandParamNameArg(TParamCommandComment *Command,
133 void actOnTParamCommandFinish(TParamCommandComment *Command,
189 void checkBlockCommandEmptyParagraph(BlockCommandComment *Command);
191 void checkReturnsCommand(const BlockCommandComment *Command);
195 void checkBlockCommandDuplicate(const BlockCommandComment *Command);
HDCommentCommands.td5 class Command<string name> {
33 class InlineCommand<string name> : Command<name> {
37 class BlockCommand<string name> : Command<name> {
45 class VerbatimBlockCommand<string name> : Command<name> {
51 def Begin : Command<name> {
56 def End : Command<endCommandName> {
61 class VerbatimLineCommand<string name> : Command<name> {
/NextBSD/usr.sbin/pppctl/
HDpppctl.c378 char Command[LINELEN]; in main() local
558 Command[sizeof(Command)-1] = '\0'; in main()
560 if (len && len < sizeof(Command)-1) in main()
561 strcpy(Command+len++, " "); in main()
562 strncpy(Command+len, argv[arg], sizeof(Command)-len-1); in main()
563 len += strlen(Command+len); in main()
641 start = Command; in main()
/NextBSD/lib/libfetch/
HDftp.errors10 200 OK Command okay
11 202 PROTO Command not implemented, superfluous at this site
37 502 PROTO Command not implemented
39 504 PROTO Command not implemented for that parameter
/NextBSD/sys/dev/hptmv/
HDcommand.h38 UCHAR Command; /* IDE_COMMAND_READ, _WRITE, _VERIFY */ member
70 UCHAR Command; /* CTRL_CMD_XXX */ member
87 UCHAR Command; /* CTRL_CMD_XXX */ member
206 } Command; typedef
/NextBSD/contrib/llvm/tools/clang/lib/Frontend/
HDCreateInvocationFromCommandLine.cpp82 if (Jobs.size() == 0 || !isa<driver::Command>(*Jobs.begin()) || in createInvocationFromCommandLine()
91 const driver::Command &Cmd = cast<driver::Command>(*Jobs.begin()); in createInvocationFromCommandLine()
/NextBSD/sys/dev/ce/
HDceddk.c257 req->Command = TAU32_Rx_Data; in ce_on_receive()
340 req->Command = TAU32_Tx_Data | TAU32_Tx_FrameEnd; in ce_send_packet()
389 rreq->Command = TAU32_Rx_Data; in ce_on_config_stop()
488 req->Command = TAU32_Configure_E1; in ce_init_board()
502 req->Command = TAU32_Configure_E1; in ce_init_board()
572 req->Command = TAU32_Rx_Data; in ce_start_chan()
592 req->Command = TAU32_Configure_Commit | in ce_start_chan()
635 req->Command = TAU32_Configure_Commit | in ce_stop_chan()
637 req->Command = 0; in ce_stop_chan()
972 req->Command = TAU32_Configure_E1; in ce_set_baud()
[all …]
/NextBSD/sys/dev/aacraid/
HDaacraid_reg.h76 u_int16_t Command; member
1171 u_int32_t Command; member
1210 u_int32_t Command; member
1226 u_int32_t Command; member
1234 u_int32_t Command; member
1264 u_int32_t Command; member
1358 u_int32_t Command; member
1381 u_int32_t Command; /* not FSACommand! */ member
1389 u_int32_t Command; member
1404 u_int32_t Command; /* not FSACommand! */ member
[all …]
HDaacraid_cam.c439 fib->Header.Command = RawIo2; in aac_container_rw_command()
454 fib->Header.Command = RawIo; in aac_container_rw_command()
464 fib->Header.Command = ContainerCommand; in aac_container_rw_command()
468 br->Command = VM_CtBlockRead; in aac_container_rw_command()
477 bw->Command = VM_CtBlockWrite; in aac_container_rw_command()
486 fib->Header.Command = ContainerCommand64; in aac_container_rw_command()
490 br->Command = VM_CtHostRead64; in aac_container_rw_command()
501 bw->Command = VM_CtHostWrite64; in aac_container_rw_command()
662 fib->Header.Command = ContainerCommand; in aac_container_special_command()
667 ccfg->Command = VM_ContainerConfig; in aac_container_special_command()
[all …]
/NextBSD/contrib/llvm/tools/clang/lib/Tooling/
HDCommonOptionsParser.cpp87 for (CompileCommand &Command : Commands) in adjustCommands()
89 Command.CommandLine = Adjuster(Command.CommandLine); in adjustCommands()
HDJSONCompilationDatabase.cpp255 llvm::yaml::ScalarNode *Command = nullptr; in parse() local
281 Command = ValueString; in parse()
294 if (!Command) { in parse()
315 CompileCommandRef(Directory, Command)); in parse()
/NextBSD/sys/dev/aac/
HDaacreg.h141 u_int16_t Command; member
1167 u_int32_t Command; member
1183 u_int32_t Command; member
1192 u_int32_t Command; member
1222 u_int32_t Command; member
1318 u_int32_t Command; /* not FSACommand! */ member
1326 u_int32_t Command; member
1341 u_int32_t Command; /* not FSACommand! */ member
1350 u_int32_t Command; /* not FSACommand! */ member
1379 u_int32_t Command; member
/NextBSD/contrib/groff/src/preproc/refer/
HDTODO95 Command to to specify which fields can occur multiple times:
98 Command to specify how various fields sort:
104 Command to specify which fields are author fields:
112 Command to set the names of months:
121 Command to control strings used in capitalization
/NextBSD/crypto/heimdal/appl/telnet/telnet/
HDcommands.c53 } Command; typedef
1972 static Command *getcmd(char *name);
1978 Command *c; in cmdrc()
2294 static Command cmdtab[] = {
2323 static Command cmdtab2[] = {
2349 static Command
2352 Command *cm; in getcmd()
2354 if ((cm = (Command *) genget(name, (char **) cmdtab, sizeof(Command)))) in getcmd()
2356 return (Command *) genget(name, (char **) cmdtab2, sizeof(Command)); in getcmd()
2362 Command *c; in command()
[all …]
/NextBSD/contrib/gdb/gdb/doc/
HDgdb.info-23522 * Editing:: Command editing
3523 * History:: Command history
3555 Command editing
3580 Command history
3944 * Command Files:: Command files
4034 File: gdb.info, Node: Hooks, Next: Command Files, Prev: Define, Up: Sequences
4100 File: gdb.info, Node: Command Files, Next: Output, Prev: Hooks, Up: Sequences
4102 Command files
4175 File: gdb.info, Node: Output, Prev: Command Files, Up: Sequences
4239 Command Interpreters
[all …]
/NextBSD/contrib/llvm/tools/llvm-objdump/
HDMachODump.cpp286 for (const auto &Command : MachOObj->load_commands()) { in getSectionsAndSymbols() local
287 if (Command.C.cmd == MachO::LC_FUNCTION_STARTS) { in getSectionsAndSymbols()
291 MachOObj->getLinkeditDataLoadCommand(Command); in getSectionsAndSymbols()
294 } else if (Command.C.cmd == MachO::LC_SEGMENT) { in getSectionsAndSymbols()
295 MachO::segment_command SLC = MachOObj->getSegmentLoadCommand(Command); in getSectionsAndSymbols()
8316 for (const auto &Command : Obj->load_commands()) { in PrintLoadCommands() local
8318 if (Command.C.cmd == MachO::LC_SEGMENT) { in PrintLoadCommands()
8319 MachO::segment_command SLC = Obj->getSegmentLoadCommand(Command); in PrintLoadCommands()
8326 MachO::section S = Obj->getSection(Command, j); in PrintLoadCommands()
8331 } else if (Command.C.cmd == MachO::LC_SEGMENT_64) { in PrintLoadCommands()
[all …]

123456789