Home
last modified time | relevance | path

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

12345678910>>...12

/openbsd-src/gnu/llvm/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 …]
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/compiler-rt/lib/fuzzer/
H A DFuzzerCommand.h25 class Command final {
34 Command() : CombinedOutAndErr(false) {} in Command() function
36 explicit Command(const std::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()
H A DFuzzerUtil.h59 int ExecuteCommand(const Command &Cmd);
60 bool ExecuteCommand(const Command &Cmd, std::string *CmdOutput);
63 FILE *OpenProcessPipe(const char *Command, const char *Mode);
H A DFuzzerUtilPosix.cpp93 bool ExecuteCommand(const Command &Cmd, std::string *CmdOutput) { in ExecuteCommand()
165 FILE *OpenProcessPipe(const char *Command, const char *Mode) { in OpenProcessPipe() argument
166 return popen(Command, Mode); in OpenProcessPipe()
/openbsd-src/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/t/
H A Deu_command.t117 ExtUtils::Command::chmod();
124 ExtUtils::Command::chmod();
131 ExtUtils::Command::chmod();
140 ExtUtils::Command::chmod();
161 ExtUtils::Command::chmod();
168 ExtUtils::Command::chmod();
175 ExtUtils::Command::chmod();
239 ExtUtils::Command::expand_wildcards();
245 ExtUtils::Command::expand_wildcards();
280 ExtUtils::Command::dos2unix();
/openbsd-src/gnu/llvm/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);
H A DCommentCommands.td5 class Command<string name> {
33 class InlineCommand<string name> : Command<name> {
38 class BlockCommand<string name> : Command<name> {
46 class VerbatimBlockCommand<string name> : Command<name> {
52 def Begin : Command<name> {
57 def End : Command<endCommandName> {
62 class VerbatimLineCommand<string name> : Command<name> {
66 class PropertyCommand<string name> : Command<name> {
/openbsd-src/gnu/llvm/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()
298 void Command::setEnvironment(llvm::ArrayRef<const char *> NewEnvironment) { in setEnvironment()
304 void Command::setRedirectFiles( in setRedirectFiles()
309 void Command::PrintFileNames() const { in PrintFileNames()
317 int Command::Execute(ArrayRef<std::optional<StringRef>> Redirects, in Execute()
386 : 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()
/openbsd-src/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils/Command/
H A DMM.pm1 package ExtUtils::Command::MM;
67 require ExtUtils::Command;
68 my @argv = ExtUtils::Command::expand_wildcards(@ARGV);
311 require ExtUtils::Command;
314 ExtUtils::Command::cp(@ARGV);
318 ExtUtils::Command::chmod(@ARGV);
/openbsd-src/gnu/llvm/clang/include/clang/Driver/
H A DJob.h106 class Command {
169 Command(const Action &Source, const Tool &Creator,
175 Command(const Command &) = default;
176 virtual ~Command() = default;
239 class CC1Command : public Command {
257 class ForceSuccessCommand : public Command {
276 using list_type = SmallVector<std::unique_ptr<Command>, 4>;
289 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;
217 void addCommand(std::unique_ptr<Command> C) { Jobs.addJob(std::move(C)); } in addCommand()
232 void setPostCallback(const std::function<void(const Command &, int)> &CB) { in setPostCallback() argument
302 int ExecuteCommand(const Command &C, const Command *&FailingCommand,
313 SmallVectorImpl<std::pair<int, const Command *>> &FailingCommands,
/openbsd-src/gnu/llvm/lldb/source/Commands/
H A DOptions.td3 let Command = "target modules dump symtab" in {
11 let Command = "help" in {
20 let Command = "settings set" in {
30 let Command = "settings write" in {
38 let Command = "settings read" in {
44 let Command = "settings clear" in {
49 let Command = "breakpoint list" in {
66 let Command = "breakpoint modify" in {
96 Arg<"Command">,
101 let Command = "breakpoint dummy" in {
[all …]
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/clang/lib/Tooling/DependencyScanning/
H A DDependencyScanningTool.cpp47 void handleBuildCommand(Command) override {} in handleBuildCommand() argument
117 const CompileCommand &Command, StringRef CWD, in getP1689ModuleDependencyFile() argument
123 const CompileCommand &Command) in getP1689ModuleDependencyFile() argument
124 : Filename(Command.Filename), Rule(Rule) { in getP1689ModuleDependencyFile()
125 Rule.PrimaryOutput = Command.Output; in getP1689ModuleDependencyFile()
149 P1689ModuleDependencyPrinterConsumer Consumer(Rule, Command); in getP1689ModuleDependencyFile()
150 auto Result = Worker.computeDependencies(CWD, Command.CommandLine, Consumer); in getP1689ModuleDependencyFile()
/openbsd-src/gnu/llvm/llvm/tools/llvm-symbolizer/
H A Dllvm-symbolizer.cpp109 enum class Command { enum
138 StringRef InputString, Command &Cmd, in parseCommand()
144 Cmd = Command::Code; in parseCommand()
146 Cmd = Command::Data; in parseCommand()
148 Cmd = Command::Frame; in parseCommand()
151 Cmd = Command::Code; in parseCommand()
214 void executeCommand(StringRef ModuleName, const T &ModuleSpec, Command Cmd, in executeCommand()
221 if (Cmd == Command::Data) { in executeCommand()
224 } else if (Cmd == Command::Frame) { in executeCommand()
260 Command Cmd; in symbolizeInput()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/lldb/utils/TableGen/
H A DLLDBOptionDefEmitter.cpp149 static void emitOptions(std::string Command, std::vector<Record *> Records, in emitOptions() argument
155 std::string ID = Command; in emitOptions()
163 OS << "// Options for " << Command << "\n"; in emitOptions()
171 OS << "#endif // " << Command << " command\n\n"; in emitOptions()
/openbsd-src/gnu/llvm/clang/include/clang/Tooling/DependencyScanning/
H A DDependencyScanningTool.h59 std::vector<Command> Commands;
109 const clang::tooling::CompileCommand &Command, StringRef CWD,
150 void handleBuildCommand(Command Cmd) override { in handleBuildCommand()
187 std::vector<Command> Commands;
/openbsd-src/sys/dev/ic/
H A Daacreg.h144 u_int16_t Command; member
1009 u_int32_t Command; member
1025 u_int32_t Command; member
1034 u_int32_t Command; member
1064 u_int32_t Command; member
1153 u_int32_t Command; /* not FSACommand! */ member
1161 u_int32_t Command; member
1176 u_int32_t Command; /* not FSACommand! */ member
1185 u_int32_t Command; /* not FSACommand! */ member
1204 u_int32_t Command; member
/openbsd-src/gnu/llvm/llvm/utils/lit/lit/
H A DShCommands.py1 class Command: class
10 if not isinstance(other, Command):
46 if not isinstance(other, Command):

12345678910>>...12