HomeSort by: relevance | last modified time | path
    Searched refs:Command (Results 1 - 25 of 199) sorted by relevancy

1 2 3 4 5 6 7 8

  /src/external/apache2/llvm/dist/llvm/utils/lit/tests/unit/
ShUtil.py 5 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...]
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.python/
py-error.py 19 class ClassName(gdb.Command):
23 gdb.Command.__init__(self, "ClassName", gdb.COMMAND_DATA, prefix=True)
py-completion.py 21 class CompleteFileInit(gdb.Command):
23 gdb.Command.__init__(
31 class CompleteFileNone(gdb.Command):
33 gdb.Command.__init__(self, "completefilenone", gdb.COMMAND_USER)
42 class CompleteFileMethod(gdb.Command):
44 gdb.Command.__init__(self, "completefilemethod", gdb.COMMAND_USER)
53 class CompleteFileCommandCond(gdb.Command):
55 gdb.Command.__init__(self, "completefilecommandcond", gdb.COMMAND_USER)
61 # This is a test made to know if the command
73 class CompleteLimit1(gdb.Command)
    [all...]
py-mi-events-gdb.py 42 class test_events(gdb.Command):
46 gdb.Command.__init__(self, "test-events", gdb.COMMAND_STACK)
py-thread-exited.py 44 class test_events(gdb.Command):
48 gdb.Command.__init__(self, "test-events", gdb.COMMAND_STACK)
py-events.py 102 class test_events(gdb.Command):
106 gdb.Command.__init__(self, "test-events", gdb.COMMAND_STACK)
122 class test_newobj_events(gdb.Command):
126 gdb.Command.__init__(self, "test-objfile-events", gdb.COMMAND_STACK)
146 class test_exiting_event(gdb.Command):
150 gdb.Command.__init__(self, "test-exiting-event", gdb.COMMAND_STACK)
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/
py-error.py 19 class ClassName(gdb.Command):
23 gdb.Command.__init__(self, "ClassName", gdb.COMMAND_DATA, prefix=True)
py-completion.py 21 class CompleteFileInit(gdb.Command):
23 gdb.Command.__init__(
31 class CompleteFileNone(gdb.Command):
33 gdb.Command.__init__(self, "completefilenone", gdb.COMMAND_USER)
42 class CompleteFileMethod(gdb.Command):
44 gdb.Command.__init__(self, "completefilemethod", gdb.COMMAND_USER)
53 class CompleteFileCommandCond(gdb.Command):
55 gdb.Command.__init__(self, "completefilecommandcond", gdb.COMMAND_USER)
61 # This is a test made to know if the command
73 class CompleteLimit1(gdb.Command)
    [all...]
py-mi-events-gdb.py 42 class test_events(gdb.Command):
46 gdb.Command.__init__(self, "test-events", gdb.COMMAND_STACK)
py-thread-exited.py 46 class test_events(gdb.Command):
50 gdb.Command.__init__(self, "test-events", gdb.COMMAND_STACK)
py-events.py 102 class test_events(gdb.Command):
106 gdb.Command.__init__(self, "test-events", gdb.COMMAND_STACK)
122 class test_newobj_events(gdb.Command):
126 gdb.Command.__init__(self, "test-objfile-events", gdb.COMMAND_STACK)
146 class test_exiting_event(gdb.Command):
150 gdb.Command.__init__(self, "test-exiting-event", gdb.COMMAND_STACK)
  /src/sys/external/bsd/acpica/dist/debugger/
dbhistry.c 3 * Module Name: dbhistry - debugger HISTORY command
60 char *Command;
76 * PARAMETERS: CommandLine - Command to add
80 * DESCRIPTION: Add a command line to the history buffer.
91 /* Put command into the next available slot */
99 if (AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command != NULL)
102 AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command);
107 Command);
108 AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command =
114 AcpiGbl_HistoryBuffer[AcpiGbl_NextHistoryIndex].Command
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-xray/
xray-registry.cpp 1 //===- xray-registry.cpp: Implement a command registry. -------------------===//
25 HandlerType Command) {
27 "Attempting to overwrite a command handler");
28 assert(Command && "Attempting to register an empty std::function<Error()>");
29 (*Commands)[SC] = Command;
xray-registry.h 22 // and associates it with |SC|. This requires that a command has not been
31 CommandRegistration(cl::SubCommand *SC, std::function<Error()> Command);
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerUtilLinux.cpp 20 int ExecuteCommand(const Command &Cmd) {
FuzzerCommand.h 9 // FuzzerCommand represents a command to run in a subprocess. It allows callers
10 // to manage command line arguments and output and error streams.
26 class Command final {
28 // This command line flag is used to indicate that the remaining command line
35 Command() : CombinedOutAndErr(false) {}
37 explicit Command(const Vector<std::string> &ArgsToAdd)
40 explicit Command(const Command &Other)
44 Command &operator=(const Command &Other)
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-symbolizer/
llvm-symbolizer.cpp 96 enum class Command {
103 StringRef InputString, Command &Cmd,
108 Cmd = Command::Code;
110 Cmd = Command::Data;
112 Cmd = Command::Frame;
115 Cmd = Command::Code;
152 Command Cmd;
162 if (Cmd == Command::Data) {
166 } else if (Cmd == Command::Frame) {
  /src/external/apache2/llvm/dist/clang/lib/AST/
CommentCommandTraits.cpp 1 //===--- CommentCommandTraits.cpp - Comment command properties --*- C++ -*-===//
48 // Single-character command impostures, such as \t or \n, should not go
59 auto ConsiderCorrection = [&](const CommandInfo *Command) {
60 StringRef Name = Command->Name;
70 BestCommand.push_back(Command);
74 for (const auto &Command : Commands)
75 ConsiderCorrection(&Command);
77 for (const auto *Command : RegisteredCommands)
78 if (!Command->IsUnknownCommand)
79 ConsiderCorrection(Command);
    [all...]
CommentSema.cpp 62 void Sema::actOnBlockCommandArgs(BlockCommandComment *Command,
64 Command->setArgs(Args);
67 void Sema::actOnBlockCommandFinish(BlockCommandComment *Command,
69 Command->setParagraph(Paragraph);
70 checkBlockCommandEmptyParagraph(Command);
71 checkBlockCommandDuplicate(Command);
75 checkReturnsCommand(Command);
76 checkDeprecatedCommand(Command);
85 ParamCommandComment *Command =
90 Diag(Command->getLocation()
    [all...]
  /src/usr.bin/make/unit-tests/
varmod-shell.exp 1 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
7 Capturing the output of command "echo word; (exit 13)"
8 make: varmod-shell.mk:36: warning: Command "echo word; (exit 13)" exited with status 13
var-op-shell.exp 1 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
4 /bin/no/such/command: not found
5 make: var-op-shell.mk:69: warning: Command "/bin/no/such/command" exited with status 127
7 Capturing the output of command "echo '$$$$'"
12 Capturing the output of command "echo xy"
varmod-assign-shell.exp 1 make: varmod-assign-shell.mk:21: warning: Command "echo output; (exit 13)" exited with status 13
6 Capturing the output of command "echo output; (exit 13)"
7 make: varmod-assign-shell.mk:26: warning: Command "echo output; (exit 13)" exited with status 13
varmod-sun-shell.exp 1 make: varmod-sun-shell.mk:17: warning: Command "echo word; (exit 13)" exited with status 13
7 Capturing the output of command "echo word; (exit 13)"
8 make: varmod-sun-shell.mk:24: warning: Command "echo word; (exit 13)" exited with status 13
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
CommentSema.h 57 /// AST node for the \command and its aliases.
60 /// AST node for the \\headerfile command.
94 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);
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
CreateInvocationFromCommandLine.cpp 9 // Construct a compiler invocation object for command line driver arguments
59 // We expect to get back exactly one command job, if we didn't something
77 if (Jobs.size() == 0 || !isa<driver::Command>(*Jobs.begin()) ||
86 const driver::Command &Cmd = cast<driver::Command>(*Jobs.begin());

Completed in 28 milliseconds

1 2 3 4 5 6 7 8