Home
last modified time | relevance | path

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

1234567891011

/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DCommentSema.cpp64 Command->setArgs(Args); in actOnBlockCommandArgs()
75 checkReturnsCommand(Command); in actOnBlockCommandFinish()
85 ParamCommandComment *Command = in actOnParamCommandStart() local
90 Diag(Command->getLocation(), in actOnParamCommandStart()
95 return Command; in actOnParamCommandStart()
298 return Command; in actOnTParamCommandStart()
332 PrevCommand = Command; in actOnTParamCommandParamNameArg()
573 DiagLoc = Command->getArgRange(Command->getNumArgs() - 1).getEnd(); in checkBlockCommandEmptyParagraph()
622 Diag(Command->getLocation(), in checkReturnsCommand()
634 BriefCommand = Command; in checkBlockCommandDuplicate()
[all …]
H A DCommentCommandTraits.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()
/freebsd-13.1/sys/contrib/dev/acpica/components/debugger/
H A Ddbhistry.c168 char *Command; member
207 if (AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command != NULL) in AcpiDbAddToHistory()
210 AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command); in AcpiDbAddToHistory()
215 Command); in AcpiDbAddToHistory()
216 AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command = in AcpiDbAddToHistory()
222 AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command = in AcpiDbAddToHistory()
226 strcpy (AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command, in AcpiDbAddToHistory()
284 if (AcpiGbl_HistoryBuffer[HistoryIndex].Command) in AcpiDbDisplayHistory()
288 AcpiGbl_HistoryBuffer[HistoryIndex].Command); in AcpiDbDisplayHistory()
364 return (AcpiGbl_HistoryBuffer[HistoryIndex].Command); in AcpiDbGetHistoryByIndex()
H A Ddbinput.c176 const char *Command,
181 char *Command);
185 const char *Command,
485 const char *Command, in AcpiDbMatchCommandHelp() argument
506 while ((*Command) && (*Invocation) && (*Invocation != ' ')) in AcpiDbMatchCommandHelp()
514 Command++; in AcpiDbMatchCommandHelp()
547 const char *Command, in AcpiDbDisplayCommandInfo() argument
557 Matched = AcpiDbMatchCommandHelp (Command, Next); in AcpiDbDisplayCommandInfo()
584 char *Command) in AcpiDbDisplayHelp() argument
589 if (!Command) in AcpiDbDisplayHelp()
[all …]
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerCommand.h25 class Command final {
34 Command() : CombinedOutAndErr(false) {} in Command() function
36 explicit Command(const Vector<std::string> &ArgsToAdd) in Command() function
39 explicit Command(const Command &Other) in Command() function
43 Command &operator=(const Command &Other) {
50 ~Command() {} in ~Command()
155 Command(Command &&Other) = delete;
156 Command &operator=(Command &&Other) = delete;
H A DFuzzerUtilWindows.cpp159 FILE *OpenProcessPipe(const char *Command, const char *Mode) { in OpenProcessPipe() argument
160 return _popen(Command, Mode); in OpenProcessPipe()
167 int ExecuteCommand(const Command &Cmd) { in ExecuteCommand()
172 bool ExecuteCommand(const Command &Cmd, std::string *CmdOutput) { in ExecuteCommand()
209 if (ExecuteCommand(Command(command_vector)) == 0) in DisassembleCmd()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DCommentSema.h94 void actOnBlockCommandArgs(BlockCommandComment *Command,
97 void actOnBlockCommandFinish(BlockCommandComment *Command,
105 void actOnParamCommandDirectionArg(ParamCommandComment *Command,
110 void actOnParamCommandParamNameArg(ParamCommandComment *Command,
115 void actOnParamCommandFinish(ParamCommandComment *Command,
123 void actOnTParamCommandParamNameArg(TParamCommandComment *Command,
128 void actOnTParamCommandFinish(TParamCommandComment *Command,
184 void checkBlockCommandEmptyParagraph(BlockCommandComment *Command);
186 void checkReturnsCommand(const BlockCommandComment *Command);
190 void checkBlockCommandDuplicate(const BlockCommandComment *Command);
H A DCommentCommands.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> {
/freebsd-13.1/contrib/llvm-project/clang/lib/Driver/
H A DJob.cpp38 Command::Command(const Action &Source, const Tool &Creator, in Command() function in Command
106 void Command::writeResponseFile(raw_ostream &OS) const { in writeResponseFile()
132 void Command::buildArgvForResponseFile( in buildArgvForResponseFile()
201 void Command::Print(raw_ostream &OS, const char *Terminator, bool Quote, in Print()
292 void Command::setResponseFile(const char *FileName) { in setResponseFile()
304 void Command::PrintFileNames() const { in PrintFileNames()
312 int Command::Execute(ArrayRef<llvm::Optional<StringRef>> Redirects, in Execute()
374 Command::Print(OS, Terminator, Quote, CrashInfo); in Print()
383 return Command::Execute(Redirects, ErrMsg, ExecutionFailed); in Execute()
428 Command::Print(OS, "", Quote, CrashInfo); in Print()
[all …]
H A DCompilation.cpp164 int Compilation::ExecuteCommand(const Command &C, in ExecuteCommand()
165 const Command *&FailingCommand) const { in ExecuteCommand()
210 using FailingCommandList = SmallVectorImpl<std::pair<int, const Command *>>;
234 static bool InputsOk(const Command &C, in InputsOk()
248 const Command *FailingCommand = nullptr; in ExecuteJobs()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Driver/
H A DJob.h106 class Command {
166 Command(const Action &Source, const Tool &Creator,
172 Command(const Command &) = default;
173 virtual ~Command() = default;
227 class CC1Command : public Command {
244 class ForceSuccessCommand : public Command {
263 using list_type = SmallVector<std::unique_ptr<Command>, 4>;
276 void addJob(std::unique_ptr<Command> J) { Jobs.push_back(std::move(J)); } in addJob()
H A DCompilation.h121 std::function<void(const Command &, int)> PostCallback;
210 void addCommand(std::unique_ptr<Command> C) { Jobs.addJob(std::move(C)); } in addCommand()
224 void setPostCallback(const std::function<void(const Command &, int)> &CB) { in setPostCallback() argument
292 int ExecuteCommand(const Command &C, const Command *&FailingCommand) const;
300 SmallVectorImpl<std::pair<int, const Command *>> &FailingCommands) const;
/freebsd-13.1/sys/dev/aacraid/
H A Daacraid_endian.c51 TOH(ptr->Command, 16); in aac_fib_header_toh()
131 TOH(ptr->Command, 32); in aac_cnt_config_toh()
203 TOLE(ptr->Command, 16); in aac_fib_header_tole()
216 TOLE(ptr->Command, 32); in aac_mntinfo_tole()
234 TOLE(ptr->Command, 32); in aac_cnt_config_tole()
272 TOLE(ptr->Command, 32); in aac_ctcfg_tole()
280 TOLE(ptr->Command, 32); in aac_vmioctl_tole()
291 TOLE(ptr->Command, 32); in aac_pause_command_tole()
351 TOLE(ptr->Command, 32); in aac_blockread_tole()
360 TOLE(ptr->Command, 32); in aac_blockwrite_tole()
[all …]
H A Daacraid_reg.h78 u_int16_t Command; member
1173 u_int32_t Command; member
1212 u_int32_t Command; member
1228 u_int32_t Command; member
1236 u_int32_t Command; member
1266 u_int32_t Command; member
1359 u_int32_t Command; member
1382 u_int32_t Command; /* not FSACommand! */ member
1390 u_int32_t Command; member
1405 u_int32_t Command; /* not FSACommand! */ member
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DOptions.td11 let Command = "help" in {
20 let Command = "settings set" in {
28 let Command = "settings write" in {
36 let Command = "settings read" in {
94 Arg<"Command">,
409 let Command = "history" in {
422 let Command = "log" in {
525 let Command = "source" in {
534 let Command = "alias" in {
541 let Command = "regex" in {
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-registry.cpp25 HandlerType Command) { in CommandRegistration() argument
28 assert(Command && "Attempting to register an empty std::function<Error()>"); in CommandRegistration()
29 (*Commands)[SC] = Command; in CommandRegistration()
/freebsd-13.1/sys/contrib/device-tree/Bindings/reserved-memory/
H A Dqcom,cmd-db.txt1 Command DB
4 Command DB is a database that provides a mapping between resource key and the
13 The bindings for Command DB is specified in the reserved-memory section in
26 the Command DB in memory.
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-symbolizer/
H A Dllvm-symbolizer.cpp98 enum class Command { enum
105 StringRef InputString, Command &Cmd, in parseCommand()
110 Cmd = Command::Code; in parseCommand()
112 Cmd = Command::Data; in parseCommand()
114 Cmd = Command::Frame; in parseCommand()
117 Cmd = Command::Code; in parseCommand()
154 Command Cmd; in symbolizeInput()
164 if (Cmd == Command::Data) { in symbolizeInput()
168 } else if (Cmd == Command::Frame) { in symbolizeInput()
/freebsd-13.1/lib/libfetch/
H A Dftp.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
/freebsd-13.1/usr.sbin/pppctl/
H A Dpppctl.c382 char Command[LINELEN]; in main() local
562 Command[sizeof(Command)-1] = '\0'; in main()
564 if (len && len < sizeof(Command)-1) in main()
565 strcpy(Command+len++, " "); in main()
566 strncpy(Command+len, argv[arg], sizeof(Command)-len-1); in main()
567 len += strlen(Command+len); in main()
645 start = Command; in main()
/freebsd-13.1/contrib/llvm-project/clang/lib/Tooling/
H A DJSONCompilationDatabase.cpp355 llvm::Optional<std::vector<llvm::yaml::ScalarNode *>> Command; in parse() local
378 Command = std::vector<llvm::yaml::ScalarNode *>(); in parse()
385 Command->push_back(Scalar); in parse()
395 if (!Command) in parse()
396 Command = std::vector<llvm::yaml::ScalarNode *>(1, ValueString); in parse()
412 if (!Command) { in parse()
433 auto Cmd = CompileCommandRef(Directory, File, *Command, Output); in parse()
H A DCommonOptionsParser.cpp77 for (CompileCommand &Command : Commands) in adjustCommands()
79 Command.CommandLine = Adjuster(Command.CommandLine, Command.Filename); in adjustCommands()
/freebsd-13.1/contrib/llvm-project/lldb/utils/TableGen/
H A DLLDBOptionDefEmitter.cpp153 static void emitOptions(std::string Command, std::vector<Record *> Records, in emitOptions() argument
159 std::string ID = Command; in emitOptions()
167 OS << "// Options for " << Command << "\n"; in emitOptions()
175 OS << "#endif // " << Command << " command\n\n"; in emitOptions()
/freebsd-13.1/sys/dev/hptmv/
H A Dcommand.h40 UCHAR Command; /* IDE_COMMAND_READ, _WRITE, _VERIFY */ member
72 UCHAR Command; /* CTRL_CMD_XXX */ member
89 UCHAR Command; /* CTRL_CMD_XXX */ member
208 } Command; typedef
/freebsd-13.1/contrib/llvm-project/clang/lib/Frontend/
H A DCreateInvocationFromCommandLine.cpp82 if (Jobs.size() == 0 || !isa<driver::Command>(*Jobs.begin()) || in createInvocationFromCommandLine()
91 const driver::Command &Cmd = cast<driver::Command>(*Jobs.begin()); in createInvocationFromCommandLine()

1234567891011