Searched refs:Command (Results 1 - 25 of 91) sorted by relevance

1234

/external/clang/test/CodeGenCXX/
H A D2005-02-19-BitfieldStructCrash.cpp5 struct Command { struct
6 Command(QChar c) : c(c) {} function in struct:Command
11 Command X(QChar('c'));
/external/emma/core/java12/
H A Demmarun.java9 import com.vladium.emma.Command;
26 final Command command = Command.create ("run", emmarun.class.getName (), args);
H A Demma.java10 import com.vladium.emma.Command;
39 final Command command = Command.create (commandName, "emma ".concat (commandName), commandArgs);
/external/webkit/Source/WebKit/android/wds/
H A DCommand.cpp30 #include "Command.h"
88 class InternalCommand : public Command {
90 InternalCommand(const Command* comm, const Frame* frame,
92 : Command(*comm)
115 void Command::dispatch() {
119 Vector<const Command*>* Command::s_commands;
121 void Command::Init() {
126 s_commands = new Vector<const Command*>();
127 s_commands->append(new Command("DDO
[all...]
H A DCommand.h46 // Command identifier length
68 class Command { class in namespace:android::WDS
70 Command(const char* name, const char* desc, const DispatchFunction func, function in class:android::WDS::Command
76 Command(const Command& comm) function in class:android::WDS::Command
81 virtual ~Command() {}
87 static Command* Find(const Connection* conn);
101 static Vector<const Command*>* s_commands;
H A DDebugServer.cpp29 #include "Command.h"
77 Command::Init();
98 Command* c = Command::Find(conn);
/external/clang/lib/Driver/
H A DJob.cpp1 //===--- Job.cpp - Command to Execute -------------------------------------===//
19 Command::Command(const Action &_Source, const Tool &_Creator, function in class:Command
37 void Job::addCommand(Command *C) {
H A DCompilation.cpp75 if (const Command *C = dyn_cast<Command>(&J)) {
140 int Compilation::ExecuteCommand(const Command &C,
141 const Command *&FailingCommand) const {
196 const Command *&FailingCommand) const {
197 if (const Command *C = dyn_cast<Command>(&J)) {
/external/chromium/chrome/browser/
H A Dcommand_updater.cc16 class CommandUpdater::Command { class in class:CommandUpdater
21 Command() : enabled(true) {} function in class:CommandUpdater::Command
52 Command* command = GetCommand(id, true);
60 CommandUpdater::Command* CommandUpdater::GetCommand(int id, bool create) {
65 Command* command = new Command;
82 Command* command = it->second;
H A Dcommand_updater.h81 class Command;
83 // Get a Command node for a given command ID, creating an entry if it doesn't
85 Command* GetCommand(int id, bool create);
91 typedef base::hash_map<int, Command*> CommandMap;
/external/llvm/utils/lit/lit/
H A DShUtil.py4 from ShCommands import Command, Pipeline, Seq namespace
218 return Command(args, redirects)
290 Pipeline([Command(['echo', 'hello'], [])], False))
292 Pipeline([Command(['echo', ''], [])], False))
294 Pipeline([Command(['echo', '-DFOO=a'], [])], False))
296 Pipeline([Command(['echo', '-DFOO=a'], [])], False))
300 Pipeline([Command(['echo', 'hello'],
303 Pipeline([Command(['echo', 'hello'], [(('>',), 'c'),
306 Pipeline([Command(['a'], [(('>&',2), '1')])], False))
310 Pipeline([Command(['
[all...]
H A DTclUtil.py3 from ShCommands import Command, Pipeline namespace
123 raise NotImplementedError, ('Command substitution is '
202 commands = [Command([],[])]
208 commands.append(Command([],[]))
213 commands.append(Command([],[]))
301 Pipeline([Command(['echo', 'hello'], [])],
305 Pipeline([Command(['echo', 'hello'], []),
306 Command(['grep', 'hello'], [])],
312 Pipeline([Command(['echo', 'hello'],
318 Command(['
[all...]
/external/chromium/chrome/browser/resources/shared/js/cr/ui/
H A Dcommand.js72 var Command = cr.ui.define('command');
74 Command.prototype = {
119 * "U+007F U+0008-Meta" for Delete and Command Backspace
160 cr.defineProperty(Command, 'label', cr.PropertyKind.ATTR);
166 cr.defineProperty(Command, 'disabled', cr.PropertyKind.BOOL_ATTR);
172 cr.defineProperty(Command, 'hidden', cr.PropertyKind.BOOL_ATTR);
178 cr.defineProperty(Command, 'checked', cr.PropertyKind.BOOL_ATTR);
182 * @param {cr.ui.Command} command The command that we are testing for.
261 * @param {!cr.ui.Command} command The command that we are evaluating.
277 * @type {cr.ui.Command}
[all...]
H A Dmenu_item.js6 const Command = cr.ui.Command;
44 * @type {cr.ui.Command}
60 cr.ui.decorate(command, Command);
/external/clang/include/clang/Driver/
H A DJob.h19 class Command;
41 void addCommand(Command *C);
46 /// Command - An executable path/name and argument vector to
48 class Command : public Job { class in namespace:clang::driver
63 Command(const Action &_Source, const Tool &_Creator, const char *_Executable,
79 static bool classof(const Command *) { return true; }
H A DCompilation.h81 void addCommand(Command *C) { Jobs.addJob(C); }
128 /// Command which failed, if any.
130 int ExecuteCommand(const Command &C, const Command *&FailingCommand) const;
135 /// Command which failed.
137 int ExecuteJob(const Job &J, const Command *&FailingCommand) const;
/external/webkit/Tools/Scripts/webkitpy/tool/
H A Dmulticommandtool_unittest.py35 from webkitpy.tool.multicommandtool import MultiCommandTool, Command, TryAgain namespace
38 class TrivialCommand(Command):
42 Command.__init__(self, "help text", **kwargs)
53 class LikesToRetry(Command):
58 Command.__init__(self, "help text", **kwargs)
76 self.assertEqual(Command._parse_required_arguments("ARG1 ARG2"), ["ARG1", "ARG2"])
77 self.assertEqual(Command._parse_required_arguments("[ARG1] [ARG2]"), [])
78 self.assertEqual(Command._parse_required_arguments("[ARG1] ARG2"), ["ARG2"])
80 self.assertRaises(Exception, Command._parse_required_arguments, "[ARG1 ARG2]")
119 # This also tests Command aut
[all...]
/external/icu4c/test/perf/utrie2perf/
H A Dutrie2perf.cpp95 class Command : public UPerfFunction { class in inherits:UPerfFunction
97 Command(const UTrie2PerfTest &testcase) : testcase(testcase) {} function in class:Command
100 virtual ~Command() {}
115 class CheckFCD : public Command {
117 CheckFCD(const UTrie2PerfTest &testcase) : Command(testcase) {}
135 class CheckFCDAlwaysGet : public Command {
137 CheckFCDAlwaysGet(const UTrie2PerfTest &testcase) : Command(testcase) {}
156 class CheckFCDUTF8 : public Command {
158 CheckFCDUTF8(const UTrie2PerfTest &testcase) : Command(testcase) {}
173 class ToNFC : public Command {
[all...]
/external/clang/lib/Frontend/
H A DCreateInvocationFromCommandLine.cpp68 if (Jobs.size() != 1 || !isa<driver::Command>(*Jobs.begin())) {
76 const driver::Command *Cmd = cast<driver::Command>(*Jobs.begin());
/external/icu4c/test/perf/unisetperf/
H A Dunisetperf.cpp25 // Command-line options specific to unisetperf.
133 class Command : public UPerfFunction { class in inherits:UPerfFunction
135 Command(const UnicodeSetPerformanceTest &testcase) : testcase(testcase) {} function in class:Command
138 virtual ~Command() {}
155 class Contains : public Command {
157 Contains(const UnicodeSetPerformanceTest &testcase) : Command(testcase) {
205 class SpanUTF16 : public Command {
207 SpanUTF16(const UnicodeSetPerformanceTest &testcase) : Command(testcase) {
256 class SpanBackUTF16 : public Command {
258 SpanBackUTF16(const UnicodeSetPerformanceTest &testcase) : Command(testcas
[all...]
/external/icu4c/test/perf/utfperf/
H A Dutfperf.cpp43 // Command-line options specific to utfperf.
120 class Command : public UPerfFunction { class in inherits:UPerfFunction
122 Command(const UtfPerformanceTest &testcase) function in class:Command
133 virtual ~Command(){
151 class Roundtrip : public Command {
153 Roundtrip(const UtfPerformanceTest &testcase) : Command(testcase) {}
218 class FromUnicode : public Command {
220 FromUnicode(const UtfPerformanceTest &testcase) : Command(testcase) {}
263 class FromUTF8 : public Command {
266 : Command(testcas
[all...]
/external/llvm/test/MC/ARM/
H A Ddarwin-Thumb-reloc.s32 @ CHECK: # Load Command 0
88 @ CHECK: # Load Command 1
115 @ CHECK: # Load Command 2
/external/emma/core/java12/com/vladium/emma/data/
H A DmergeCommand.java15 import com.vladium.emma.Command;
25 final class mergeCommand extends Command
/external/libvpx/examples/includes/geshi/geshi/
H A Dlotusformulas.php10 * @Formula/@Command language file for GeSHi.
12 * @Formula/@Command source: IBM Lotus Notes/Domino 8 Designer Help
251 '@ConfigFile', '@Compare', '@Command', '@ClientType',
/external/chromium/net/ftp/
H A Dftp_network_transaction.h50 enum Command { enum in class:net::FtpNetworkTransaction
131 int SendFtpCommand(const std::string& command, Command cmd);
187 Command command_sent_;

Completed in 1008 milliseconds

1234