Home
last modified time | relevance | path

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

12345678910>>...24

/netbsd-src/external/apache2/llvm/dist/llvm/utils/lit/tests/unit/
H A DShUtil.py5 from lit.ShUtil import Command, Pipeline, Seq, ShLexer, ShParser
47 Pipeline([Command(['echo', 'hello'], [])], False))
49 Pipeline([Command(['echo', ''], [])], False))
51 Pipeline([Command(['echo', '-DFOO=a'], [])], False))
53 Pipeline([Command(['echo', '-DFOO=a'], [])], False))
57 Pipeline([Command(['echo', 'hello'],
60 Pipeline([Command(['echo', 'hello'], [(('>',), 'c'),
63 Pipeline([Command(['a'], [(('>&',2), '1')])], False))
67 Pipeline([Command(['a'], []),
68 Command(['b'], [])],
[all …]
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/sys/external/bsd/acpica/dist/debugger/
H A Ddbhistry.c60 char *Command; member
99 if (AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command != NULL) in AcpiDbAddToHistory()
102 AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command); in AcpiDbAddToHistory()
107 Command); in AcpiDbAddToHistory()
108 AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command = in AcpiDbAddToHistory()
114 AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command = in AcpiDbAddToHistory()
118 strcpy (AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command, in AcpiDbAddToHistory()
176 if (AcpiGbl_HistoryBuffer[HistoryIndex].Command) in AcpiDbDisplayHistory()
180 AcpiGbl_HistoryBuffer[HistoryIndex].Command); in AcpiDbDisplayHistory()
256 return (AcpiGbl_HistoryBuffer[HistoryIndex].Command); in AcpiDbGetHistoryByIndex()
H A Ddbinput.c68 const char *Command,
73 char *Command);
77 const char *Command,
380 const char *Command, in AcpiDbMatchCommandHelp() argument
401 while ((*Command) && (*Invocation) && (*Invocation != ' ')) in AcpiDbMatchCommandHelp()
403 if (tolower ((int) *Command) != tolower ((int) *Invocation)) in AcpiDbMatchCommandHelp()
409 Command++; in AcpiDbMatchCommandHelp()
442 const char *Command, in AcpiDbDisplayCommandInfo() argument
452 Matched = AcpiDbMatchCommandHelp (Command, Next); in AcpiDbDisplayCommandInfo()
479 char *Command) in AcpiDbDisplayHelp() argument
[all …]
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
H A DFuzzerCommand.h26 class Command final {
35 Command() : CombinedOutAndErr(false) {} in Command() function
37 explicit Command(const 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.cpp151 FILE *OpenProcessPipe(const char *Command, const char *Mode) { in OpenProcessPipe() argument
152 return _popen(Command, Mode); in OpenProcessPipe()
155 int ExecuteCommand(const Command &Cmd) { in ExecuteCommand()
184 if (ExecuteCommand(Command(command_vector)) == 0) in DisassembleCmd()
/netbsd-src/external/apache2/llvm/dist/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> {
/netbsd-src/external/apache2/llvm/dist/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()
291 void Command::setResponseFile(const char *FileName) { in setResponseFile()
297 void Command::setEnvironment(llvm::ArrayRef<const char *> NewEnvironment) { in setEnvironment()
303 void Command::PrintFileNames() const { in PrintFileNames()
311 int Command::Execute(ArrayRef<llvm::Optional<StringRef>> Redirects, in Execute()
364 : Command(Source, Creator, ResponseSupport, Executable, Arguments, Inputs, in CC1Command()
373 Command::Print(OS, Terminator, Quote, CrashInfo); in Print()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Driver/
H A DJob.h105 class Command {
165 Command(const Action &Source, const Tool &Creator,
171 Command(const Command &) = default;
172 virtual ~Command() = default;
228 class CC1Command : public Command {
245 class ForceSuccessCommand : 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.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;
/netbsd-src/external/bsd/nvi/dist/docs/vi.ref/
H A Dex.cmd.texi171 @deftypefn Command {} {"}
174 Command lines beginning with the double-quote character
181 @deftypefn Command {} {<control-D>}
183 @deftypefnx Command {} {<end-of-file>}
213 @deftypefn Command {} {!} {argument(s)}
215 @deftypefnx Command {} {[range]!} {argument(s)}
302 @deftypefn Command {[range]} {#} {[count] [flags]}
305 @deftypefnx Command {[range]} {nu[mber]} {[count] [flags]}
321 @deftypefn Command {@@} {buffer}
324 @deftypefnx Command {} {*} {buffer}
[all …]
H A Dvi.cmd.texi376 @deftypefn Command {[count]} {<control-A>}
411 @deftypefn Command {[count]} {<control-B>}
437 @deftypefn Command {[count]} {<control-D>}
466 @deftypefn Command {[count]} {<control-E>}
483 @deftypefn Command {[count]} {<control-F>}
509 @deftypefn Command {} {<control-G>}
528 @deftypefn Command {[count]} {<control-H>}
529 @deftypefnx Command {[count]} {h}
556 @deftypefn Command {[count]} {<control-J>}
559 @deftypefnx Command {[count]} {<control-N>}
[all …]
/netbsd-src/external/gpl3/binutils.old/dist/gprofng/src/
H A DCommand.cc33 const char *Command::DEFAULT_CMD = "default"; // token for default
34 const char *Command::ALL_CMD = "all"; // token for all
35 const char *Command::ANY_CMD = "any"; // token for any
36 const char *Command::NONE_CMD = "none"; // token for none
37 const char *Command::HWC_CMD = "hwc"; // token for all HWC
38 const char *Command::BIT_CMD = "bit"; // token for any bit-generated metric
39 const char *Command::DEFAULT_METRICS = "ei.user:name"; // if no .rc files read
40 const char *Command::DEFAULT_SORT = "e.user:name"; // if no .rc files read
236 Command::get_command (char *cmd, int &arg_count, int &cparam) in get_command()
303 Command::get_cmd_str (CmdType type) in get_cmd_str()
[all …]
H A DMetricList.cc640 if (!strcasecmp (mname, Command::ANY_CMD)) in set_sort_metric()
642 else if (!strcasecmp (mname, Command::ALL_CMD)) in set_sort_metric()
644 else if (!strcasecmp (mname, Command::HWC_CMD)) in set_sort_metric()
646 else if (!strcasecmp (mname, Command::BIT_CMD)) in set_sort_metric()
655 && strncmp (Command::BIT_CMD, m->get_cmd (), in set_sort_metric()
656 strlen (Command::BIT_CMD)) == 0) in set_sort_metric()
871 if (!strcasecmp (mcmd, Command::ANY_CMD)) in add_matching_dmetrics()
873 else if (!strcasecmp (mcmd, Command::ALL_CMD)) in add_matching_dmetrics()
875 else if (!strcasecmp (mcmd, Command::HWC_CMD)) in add_matching_dmetrics()
877 else if (!strcasecmp (mcmd, Command::BIT_CMD)) in add_matching_dmetrics()
[all …]
/netbsd-src/external/gpl3/binutils/dist/gprofng/src/
H A DCommand.cc33 const char *Command::DEFAULT_CMD = "default"; // token for default
34 const char *Command::ALL_CMD = "all"; // token for all
35 const char *Command::ANY_CMD = "any"; // token for any
36 const char *Command::NONE_CMD = "none"; // token for none
37 const char *Command::HWC_CMD = "hwc"; // token for all HWC
38 const char *Command::BIT_CMD = "bit"; // token for any bit-generated metric
39 const char *Command::DEFAULT_METRICS = "ei.user:name"; // if no .rc files read
40 const char *Command::DEFAULT_SORT = "e.user:name"; // if no .rc files read
245 Command::get_command (char *cmd, int &arg_count, int &cparam) in get_command()
312 Command::get_cmd_str (CmdType type) in get_cmd_str()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-symbolizer/
H A Dllvm-symbolizer.cpp96 enum class Command { enum
103 StringRef InputString, Command &Cmd, in parseCommand()
108 Cmd = Command::Code; in parseCommand()
110 Cmd = Command::Data; in parseCommand()
112 Cmd = Command::Frame; in parseCommand()
115 Cmd = Command::Code; in parseCommand()
152 Command Cmd; in symbolizeInput()
162 if (Cmd == Command::Data) { in symbolizeInput()
166 } else if (Cmd == Command::Frame) { in symbolizeInput()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/usr.bin/make/unit-tests/
H A Dvar-op-shell.exp1 make: "var-op-shell.mk" line 32: warning: Command "echo "failed"; (exit 13)" exited with status 13
2 make: "var-op-shell.mk" line 39: warning: Command "exit 13" exited with status 13
5 make: "var-op-shell.mk" line 69: warning: Command "/bin/no/such/command" exited with status 127
H A Dvarmod-shell.exp1 make: "varmod-shell.mk" line 25: warning: Command "echo word; (exit 13)" exited with status 13
2 make: "varmod-shell.mk" line 29: warning: Command "echo word; (exit 13)" exited with status 13
8 make: "varmod-shell.mk" line 36: warning: Command "echo word; (exit 13)" exited with status 13
/netbsd-src/external/bsd/nvi/dist/perl_api/
H A Dperl.xs516 # Perl Command: VI::Msg
533 # Perl Command: VI::EndScreen
553 # Perl Command: VI::NewScreen
584 # Perl Command: VI::FindScreen
602 # Perl Command: VI::GetFileName
616 # Perl Command: VI::AppendLine
639 # Perl Command: VI::DelLine
659 # Perl Command: VI::GetLine
685 # Perl Command: VI::SetLine
711 # Perl Command: VI::InsertLine
[all …]
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/share/examples/refuse/ian/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
/netbsd-src/external/bsd/fetch/dist/libfetch/
H A Dftp.errors11 200 OK Command okay
12 202 PROTO Command not implemented, superfluous at this site
38 502 PROTO Command not implemented
40 504 PROTO Command not implemented for that parameter

12345678910>>...24