Home
last modified time | relevance | path

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

12345678910>>...12

/src/contrib/llvm-project/clang/lib/AST/
H A DCommentSema.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 …]
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()
/src/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()
511 if (tolower ((int) *Command) != tolower ((int) *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
[all …]
/src/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.cpp164 FILE *OpenProcessPipe(const char *Command, const char *Mode) { in OpenProcessPipe() argument
165 return _popen(Command, Mode); in OpenProcessPipe()
172 int ExecuteCommand(const Command &Cmd) { in ExecuteCommand()
177 bool ExecuteCommand(const Command &Cmd, std::string *CmdOutput) { in ExecuteCommand()
214 if (ExecuteCommand(Command(command_vector)) == 0) in DisassembleCmd()
/src/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);
/src/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,
/src/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()
398 : Command(Source, Creator, ResponseSupport, Executable, Arguments, Inputs, in CC1Command()
[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()
/src/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 …]
/src/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;
/src/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()
/src/contrib/llvm-project/lldb/source/Commands/
H A DOptions.td3 let Command = "target modules dump symtab" in {
11 let Command = "target modules dump separate debug info" in {
18 let Command = "help" in {
27 let Command = "settings set" in {
37 let Command = "settings write" in {
45 let Command = "settings read" in {
51 let Command = "settings clear" in {
56 let Command = "breakpoint list" in {
73 let Command = "breakpoint modify" in {
103 Arg<"Command">,
[all …]
/src/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()
/src/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()
/src/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.
/src/contrib/bmake/unit-tests/
H A Dvarmod-shell.exp1 make: varmod-shell.mk:25: warning: Command "echo word; (exit 13)" exited with status 13
2 make: varmod-shell.mk:29: warning: Command "echo word; (exit 13)" exited with status 13
8 make: varmod-shell.mk:36: warning: Command "echo word; (exit 13)" exited with status 13
H A Dvar-op-shell.exp1 make: var-op-shell.mk:32: warning: Command "echo "failed"; (exit 13)" exited with status 13
2 make: var-op-shell.mk:39: warning: Command "exit 13" exited with status 13
5 make: var-op-shell.mk:69: warning: Command "/bin/no/such/command" exited with status 127
/src/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()
/src/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
/src/contrib/llvm-project/clang/lib/Tooling/
H A DJSONCompilationDatabase.cpp351 std::optional<std::vector<llvm::yaml::ScalarNode *>> Command; in parse() local
374 Command = std::vector<llvm::yaml::ScalarNode *>(); in parse()
381 Command->push_back(Scalar); in parse()
391 if (!Command) in parse()
392 Command = std::vector<llvm::yaml::ScalarNode *>(1, ValueString); in parse()
408 if (!Command) { in parse()
428 auto Cmd = CompileCommandRef(Directory, File, *Command, Output); in parse()
/src/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
/src/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