HomeSort by relevance Sort by last modified time
    Searched defs:Command (Results 1 - 25 of 50) 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 315 \section{Command Line Options}
511 % compile-command: "tex refcard"
  /external/clang/lib/Driver/
Job.cpp 1 //===--- Job.cpp - Command to Execute -------------------------------------===//
17 void Command::anchor() {}
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)
287 Pipeline([Command(['echo', 'hello'], [])], False))
289 Pipeline([Command(['echo', ''], [])], False))
291 Pipeline([Command(['echo', '-DFOO=a'], [])], False))
293 Pipeline([Command(['echo', '-DFOO=a'], [])], False))
297 Pipeline([Command(['echo', 'hello'],
300 Pipeline([Command(['echo', 'hello'], [(('>',), 'c')
    [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/av/include/media/
IStreamSource.h 50 enum Command {
69 // command.
85 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...]
  /frameworks/testing/uiautomator/cmds/uiautomator/src/com/android/commands/uiautomator/
Launcher.java 24 * Entry point into the uiautomator command line
27 * command line arguments. It also prints out help arguments for each sub commands.
29 * To add a new sub command, implement {@link Command} and add an instance into COMMANDS array
36 public static abstract class Command {
39 public Command(String name) {
44 * Returns the name of the sub command
52 * Returns a one-liner of the function of this command
58 * Returns a detailed explanation of the command usage
66 * Starts the command with the provided argument
76 Command command = findCommand(args[0]); local
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/
setup.py 9 from distutils.command.clean import clean as _clean
10 from distutils.cmd import Command
62 # Options for 'CmdUnitTest' command
65 class unittest(Command):
150 class functest(Command):
  /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);
44 /// Command - An executable path/name and argument vector to
46 class Command : public Job {
63 Command(const Action &_Source, const Tool &_Creator, const char *_Executable,
  /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...]
  /frameworks/av/services/audioflinger/
FastMixerState.h 65 enum Command {
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
Dicttool.java 24 public static abstract class Command {
32 static HashMap<String, Class<? extends Command>> sCommands =
33 new HashMap<String, Class<? extends Command>>();
37 public static void addCommand(final String commandName, final Class<? extends Command> cls) {
41 private static Command getCommandInstance(final String commandName) {
52 System.out.println("Syntax: dicttool <command [arguments]>\nAvailable commands:\n");
64 private Command getCommand(final String[] arguments) {
67 throw new RuntimeException("Unknown command : " + commandName);
69 final Command command = getCommandInstance(commandName) local
76 final Command command = getCommand(arguments); local
    [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/clang/lib/Tooling/
JSONCompilationDatabase.cpp 27 /// \brief A parser for escaped strings of command line arguments.
256 llvm::yaml::ScalarNode *Command = NULL;
281 } else if (KeyString->getValue(KeyStorage) == "command") {
282 Command = ValueString;
295 if (!Command) {
296 ErrorMessage = "Missing key: \"command\".";
316 CompileCommandRef(Directory, Command));
  /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 255 // Custom compiler command implementation of AbstractIntepreter interface
257 // Allows using a custom command for compiling the bitcode, thus allows, for
316 // Custom execution command implementation of AbstractIntepreter interface
318 // Allows using a custom command for executing the bitcode, thus allows,
371 // Tokenize the CommandLine to the command and the args to allow
372 // defining a full command line as the command instead of just the
373 // executed program. We cannot just pass the whole string after the command
375 // command line argument (with spaces in it: "foo bar" instead
383 std::string Command = ""
    [all...]

Completed in 2168 milliseconds

1 2