Home
last modified time | relevance | path

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

12345678910>>...12

/freebsd/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()
295 return Command; in actOnTParamCommandStart()
327 PrevCommand = Command; in actOnTParamCommandParamNameArg()
544 DiagLoc = Command->getArgRange(Command->getNumArgs() - 1).getEnd(); in checkBlockCommandEmptyParagraph()
593 Diag(Command->getLocation(), in checkReturnsCommand()
605 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/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,
488 const char *Command, in AcpiDbMatchCommandHelp() argument
509 while ((*Command) && (*Invocation) && (*Invocation != ' ')) in AcpiDbMatchCommandHelp()
517 Command++; in AcpiDbMatchCommandHelp()
550 const char *Command, in AcpiDbDisplayCommandInfo() argument
560 Matched = AcpiDbMatchCommandHelp (Command, Next); in AcpiDbDisplayCommandInfo()
587 char *Command) in AcpiDbDisplayHelp() argument
592 if (!Command) in AcpiDbDisplayHelp()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerCommand.h26 class Command final {
35 Command() : CombinedOutAndErr(false) {} in Command() function
37 explicit Command(const std::vector<std::string> &ArgsToAdd) in Command() function
40 explicit Command(const Command &Other) in Command() function
44 Command &operator=(const Command &Other) {
51 ~Command() {} in ~Command()
156 Command(Command &&Other) = delete;
157 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/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,
179 void checkBlockCommandEmptyParagraph(BlockCommandComment *Command);
181 void checkReturnsCommand(const BlockCommandComment *Command);
185 void checkBlockCommandDuplicate(const BlockCommandComment *Command);
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DJob.h106 class Command {
172 Command(const Action &Source, const Tool &Creator,
179 Command(const Command &) = default;
180 virtual ~Command() = default;
243 class CC1Command : public Command {
264 using list_type = SmallVector<std::unique_ptr<Command>, 4>;
277 void addJob(std::unique_ptr<Command> J) { Jobs.push_back(std::move(J)); } in addJob()
H A DCompilation.h124 std::function<void(const Command &, int)> PostCallback;
220 void addCommand(std::unique_ptr<Command> C) { Jobs.addJob(std::move(C)); } in addCommand()
235 void setPostCallback(const std::function<void(const Command &, int)> &CB) { in setPostCallback() argument
313 int ExecuteCommand(const Command &C, const Command *&FailingCommand,
324 SmallVectorImpl<std::pair<int, const Command *>> &FailingCommands,
/freebsd/contrib/llvm-project/clang/lib/Driver/
H A DJob.cpp39 Command::Command(const Action &Source, const Tool &Creator, in Command() function in Command
108 void Command::writeResponseFile(raw_ostream &OS) const { in writeResponseFile()
134 void Command::buildArgvForResponseFile( in buildArgvForResponseFile()
207 void Command::Print(raw_ostream &OS, const char *Terminator, bool Quote, in Print()
301 void Command::setResponseFile(const char *FileName) { in setResponseFile()
307 void Command::setEnvironment(llvm::ArrayRef<const char *> NewEnvironment) { in setEnvironment()
313 void Command::setRedirectFiles( in setRedirectFiles()
318 void Command::PrintFileNames() const { in PrintFileNames()
326 int Command::Execute(ArrayRef<std::optional<StringRef>> Redirects, in Execute()
407 Command::Print(OS, Terminator, Quote, CrashInfo); in Print()
[all …]
H A DCompilation.cpp163 int Compilation::ExecuteCommand(const Command &C, in ExecuteCommand()
164 const Command *&FailingCommand, in ExecuteCommand()
213 using FailingCommandList = SmallVectorImpl<std::pair<int, const Command *>>;
237 static bool InputsOk(const Command &C, in InputsOk()
252 const Command *FailingCommand = nullptr; in ExecuteJobs()
/freebsd/sys/dev/aacraid/
H A Daacraid_endian.c48 TOH(ptr->Command, 16); in aac_fib_header_toh()
128 TOH(ptr->Command, 32); in aac_cnt_config_toh()
200 TOLE(ptr->Command, 16); in aac_fib_header_tole()
213 TOLE(ptr->Command, 32); in aac_mntinfo_tole()
231 TOLE(ptr->Command, 32); in aac_cnt_config_tole()
269 TOLE(ptr->Command, 32); in aac_ctcfg_tole()
277 TOLE(ptr->Command, 32); in aac_vmioctl_tole()
288 TOLE(ptr->Command, 32); in aac_pause_command_tole()
348 TOLE(ptr->Command, 32); in aac_blockread_tole()
357 TOLE(ptr->Command, 32); in aac_blockwrite_tole()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/
H A DDependencyScanningTool.h64 std::vector<Command> Commands;
106 getP1689ModuleDependencyFile(const clang::tooling::CompileCommand &Command,
110 getP1689ModuleDependencyFile(const clang::tooling::CompileCommand &Command, in getP1689ModuleDependencyFile() argument
115 return getP1689ModuleDependencyFile(Command, CWD, MakeformatOutput, in getP1689ModuleDependencyFile()
156 void handleBuildCommand(Command Cmd) override { in handleBuildCommand()
190 std::vector<Command> Commands;
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DOptions.td18 let Command = "help" in {
27 let Command = "settings set" in {
37 let Command = "settings write" in {
45 let Command = "settings read" in {
103 Arg<"Command">,
440 let Command = "history" in {
481 let Command = "log dump" in {
548 let Command = "source" in {
561 let Command = "alias" in {
568 let Command = "regex" in {
[all …]
/freebsd/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DDependencyScanningTool.cpp26 void handleBuildCommand(Command) override {} in handleBuildCommand() argument
87 const CompileCommand &Command, StringRef CWD, std::string &MakeformatOutput, in getP1689ModuleDependencyFile() argument
93 const CompileCommand &Command) in getP1689ModuleDependencyFile() argument
94 : Filename(Command.Filename), Rule(Rule) { in getP1689ModuleDependencyFile()
95 Rule.PrimaryOutput = Command.Output; in getP1689ModuleDependencyFile()
128 P1689ModuleDependencyPrinterConsumer Consumer(Rule, Command); in getP1689ModuleDependencyFile()
130 auto Result = Worker.computeDependencies(CWD, Command.CommandLine, Consumer, in getP1689ModuleDependencyFile()
/freebsd/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-registry.cpp27 HandlerType Command) { in CommandRegistration() argument
30 assert(Command && "Attempting to register an empty std::function<Error()>"); in CommandRegistration()
31 getCommands()[SC] = Command; in CommandRegistration()
/freebsd/contrib/llvm-project/llvm/tools/llvm-remarkutil/
H A DRemarkUtilRegistry.cpp26 HandlerType Command) { in CommandRegistration() argument
29 assert(Command && "Attempting to register an empty std::function<Error()>"); in CommandRegistration()
30 getCommands()[SC] = Command; in CommandRegistration()
/freebsd/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/sys/contrib/device-tree/Bindings/mailbox/
H A Dmediatek,gce-mailbox.yaml7 title: Mediatek Global Command Engine Mailbox
13 The Global Command Engine (GCE) is used to help read/write registers with
15 vblank. The GCE can be used to implement the Command Queue (CMDQ) driver.
46 - description: Global Command Engine clock
/freebsd/lib/libfetch/
H A Dftp.errors9 200 OK Command okay
10 202 PROTO Command not implemented, superfluous at this site
36 502 PROTO Command not implemented
38 504 PROTO Command not implemented for that parameter
/freebsd/usr.sbin/pppctl/
H A Dpppctl.c379 char Command[LINELEN]; in main() local
559 Command[sizeof(Command)-1] = '\0'; in main()
561 if (len && len < sizeof(Command)-1) in main()
562 strcpy(Command+len++, " "); in main()
563 strncpy(Command+len, argv[arg], sizeof(Command)-len-1); in main()
564 len += strlen(Command+len); in main()
642 start = Command; in main()
/freebsd/contrib/llvm-project/clang/lib/Tooling/
H A DJSONCompilationDatabase.cpp352 std::optional<std::vector<llvm::yaml::ScalarNode *>> Command; in parse() local
375 Command = std::vector<llvm::yaml::ScalarNode *>(); in parse()
382 Command->push_back(Scalar); in parse()
392 if (!Command) in parse()
393 Command = std::vector<llvm::yaml::ScalarNode *>(1, ValueString); in parse()
409 if (!Command) { in parse()
429 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/sys/dev/hptmv/
H A Dcommand.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
/freebsd/contrib/llvm-project/lldb/utils/TableGen/
H A DLLDBOptionDefEmitter.cpp148 static void emitOptions(std::string Command, std::vector<Record *> Records, in emitOptions() argument
154 std::string ID = Command; in emitOptions()
162 OS << "// Options for " << Command << "\n"; in emitOptions()
170 OS << "#endif // " << Command << " command\n\n"; in emitOptions()

12345678910>>...12