HomeSort by relevance Sort by last modified time
    Searched defs:Command (Results 1 - 25 of 36) sorted by null

1 2

  /external/clang/test/CodeGenCXX/
2005-02-19-BitfieldStructCrash.cpp 5 struct Command {
6 Command(QChar c) : c(c) {}
11 Command X(QChar('c'));
  /external/bison/doc/
refcard.tex 317 \section{Command Line Options}
513 % compile-command: "tex refcard"
  /external/clang/lib/Driver/
Job.cpp 1 //===--- Job.cpp - Command to Execute -------------------------------------===//
19 Command::Command(const Action &_Source, const Tool &_Creator,
37 void Job::addCommand(Command *C) {
  /external/llvm/utils/lit/lit/
ShCommands.py 1 class Command:
7 return 'Command(%r, %r)' % (self.args, self.redirects)
10 if not isinstance(other, Command):
ShUtil.py 4 from ShCommands import Command, Pipeline, Seq
188 raise ValueError,"empty command!"
201 # If this is an argument, just add it to the current command.
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')
    [all...]
TclUtil.py 3 from ShCommands import Command, Pipeline
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(['e'], [])]
    [all...]
  /external/webkit/Source/WebKit/android/wds/
Command.h 46 // Command identifier length
51 // client application. Return true on successful completion of the command,
68 class Command {
70 Command(const char* name, const char* desc, const DispatchFunction func,
76 Command(const Command& comm)
81 virtual ~Command() {}
86 // Find the command specified by the client request.
87 static Command* Find(const Connection* conn);
89 // Dispatch this command
    [all...]
  /frameworks/base/include/media/
IStreamSource.h 41 enum Command {
60 // command.
71 Command cmd, bool synchronous, const sp<AMessage> &msg = NULL) = 0;
  /external/icu4c/test/perf/utrie2perf/
utrie2perf.cpp 95 class Command : public UPerfFunction {
97 Command(const UTrie2PerfTest &testcase) : testcase(testcase) {}
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/chromium/chrome/browser/
command_updater.cc 16 class CommandUpdater::Command {
21 Command() : enabled(true) {}
33 const CommandMap::const_iterator command(commands_.find(id));
34 if (command == commands_.end())
36 return command->second->enabled;
52 Command* command = GetCommand(id, true); local
53 if (command->enabled == enabled)
55 command->enabled = enabled;
56 FOR_EACH_OBSERVER(CommandObserver, command->observers
65 Command* command = new Command; local
82 Command* command = it->second; local
    [all...]
  /frameworks/base/cmds/svc/src/com/android/commands/svc/
Svc.java 21 public static abstract class Command {
24 public Command(String name) {
34 public abstract void run(String[] args); // run the command
39 Command c = lookupCommand(args[0]);
48 private static Command lookupCommand(String name) {
51 Command c = COMMANDS[i];
59 public static final Command COMMAND_HELP = new Command("help") {
68 Command c = lookupCommand(args[1]);
79 Command c = COMMANDS[i]
    [all...]
  /external/llvm/include/llvm/Object/
MachOObject.h 48 /// The load command information.
49 macho::LoadCommand Command;
51 /// The offset to the start of the load command in memory.
138 /// \brief Retrieve the information for the given load command.
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/inc/
perf_custom.h 52 void (*Command)(PERF_OBJHANDLE hObject,
117 ((PERF_OBJHANDLE)(hObject))->ci.Command( \
  /external/icu4c/test/perf/unisetperf/
unisetperf.cpp 25 // Command-line options specific to unisetperf.
26 // Options do not have abbreviations: Force readable command lines.
133 class Command : public UPerfFunction {
135 Command(const UnicodeSetPerformanceTest &testcase) : testcase(testcase) {}
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 {
    [all...]
  /external/icu4c/test/perf/utfperf/
utfperf.cpp 43 // Command-line options specific to utfperf.
44 // Options do not have abbreviations: Force readable command lines.
120 class Command : public UPerfFunction {
122 Command(const UtfPerformanceTest &testcase)
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 {
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
helper.h 115 // Command tag for buttons on the lock screen.
116 enum Command {
  /external/clang/include/clang/Driver/
Job.h 19 class Command;
39 /// addCommand - Append a command to the current job, which must be
41 void addCommand(Command *C);
46 /// Command - An executable path/name and argument vector to
48 class Command : public Job {
63 Command(const Action &_Source, const Tool &_Creator, const char *_Executable,
79 static bool classof(const Command *) { return true; }
  /external/webkit/Tools/Scripts/webkitpy/tool/
multicommandtool_unittest.py 35 from webkitpy.tool.multicommandtool import MultiCommandTool, Command, TryAgain
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]")
96 def should_execute_command(self, command)
    [all...]
multicommandtool.py 32 # tool-name [global options] command-name [command options]
46 class Command(object):
63 # before it knows what Command to run.
73 # The tool calls bind_to_tool on each Command after adding it to its list.
75 # Command instances can only be bound to one tool at a time.
77 raise Exception("Command already bound to tool!")
137 # FIXME: This should just be rolled into Command. help_text and argument_names do not need to be instance variables.
138 class AbstractDeclarativeCommand(Command):
143 Command.__init__(self, self.help_text, self.argument_names, options=options, long_help=self.long_help, **k (…)
    [all...]
  /cts/libs/vogar-expect/src/vogar/commands/
Command.java 46 public final class Command {
55 public Command(String... args) {
59 public Command(List<String> args) {
68 private Command(Builder builder) {
77 throw new IllegalStateException("Maximum command length " + builder.maxLength
92 .command(args)
158 * Executes a command with a specified timeout. If the process does not
162 * @return the command's output, or null if the command timed out
182 * Executes the command on a new background thread. This method return
    [all...]
  /external/emma/core/java12/com/vladium/emma/
Command.java 7 * $Id: Command.java,v 1.1.1.1.2.1 2004/07/16 23:32:03 vlad_r Exp $
31 abstract class Command
36 public static Command create (final String name, final String usageName, final String [] args)
38 final Command tool;
51 throw new IllegalArgumentException ("unknown command: [" + name + "]");
63 protected Command (final String usageToolName, final String [] args)
158 // command line user overrides are have highest precedence:
  /external/llvm/tools/bugpoint/
ToolRunner.cpp 253 // Custom compiler command implementation of AbstractIntepreter interface
255 // Allows using a custom command for compiling the bitcode, thus allows, for
314 // Custom execution command implementation of AbstractIntepreter interface
316 // Allows using a custom command for executing the bitcode, thus allows,
369 // Tokenize the CommandLine to the command and the args to allow
370 // defining a full command line as the command instead of just the
371 // executed program. We cannot just pass the whole string after the command
373 // command line argument (with spaces in it: "foo bar" instead
381 std::string Command = ""
    [all...]
  /external/webkit/Source/WebCore/editing/
Editor.h 177 class Command {
179 Command();
180 Command(const EditorInternalCommand*, EditorCommandSource, PassRefPtr<Frame>);
198 Command command(const String& commandName); // Command source is CommandFromMenuOrKeyBinding.
199 Command command(const String& commandName, EditorCommandSource);
  /frameworks/base/media/java/android/media/
AsyncPlayer.java 38 private static final class Command {
52 private LinkedList<Command> mCmdQueue = new LinkedList();
54 private void startSound(Command cmd) {
87 Command cmd = null;
110 Log.w(mTag, "STOP command without a player");
166 Command cmd = new Command();
188 Command cmd = new Command();
197 private void enqueueLocked(Command cmd)
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/tool/commands/
queues.py 54 from webkitpy.tool.multicommandtool import Command, TryAgain
57 class AbstractQueue(Command, QueueEngineDelegate):
71 Command.__init__(self, "Run the %s" % self.name, options=options_list)
86 # not begin with "-" and assumes that is the command name.
139 # Command methods
142 self._options = options # FIXME: This code is wrong. Command.options is a list, this assumes an Options element!
143 self._tool = tool # FIXME: This code is wrong too! Command.bind_to_tool handles this!
304 def run_command(self, command):
305 self.run_webkit_patch(command)
445 self.run_webkit_patch(["check-style", "--force-clean", "--non-interactive", "--parent-command=style-queue", patch.id()]
    [all...]

Completed in 776 milliseconds

1 2