HomeSort by relevance Sort by last modified time
    Searched defs:Command (Results 51 - 75 of 137) sorted by null

1 23 4 5 6

  /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( \
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
bdist_rpm.py 1 """distutils.command.bdist_rpm
3 Implements the Distutils 'bdist_rpm' command (create RPM source and binary
12 from distutils.core import Command
19 class bdist_rpm (Command):
51 # supply it on the command line.
435 # XXX yuck! this filename is available from the "sdist" command,
bdist_wininst.py 1 """distutils.command.bdist_wininst
3 Implements the Distutils 'bdist_wininst' command: create a windows installer
14 from distutils.core import Command
20 class bdist_wininst (Command):
91 # next the command will be initialized using that name
check.py 1 """distutils.command.check
3 Implements the Distutils 'check' command.
7 from distutils.core import Command
38 class check(Command):
39 """This command checks the meta-data of the package.
64 return Command.warn(self, msg)
67 """Runs the command."""
install_lib.py 1 """distutils.command.install_lib
3 Implements the Distutils 'install_lib' command
11 from distutils.core import Command
21 class install_lib(Command):
56 # let the 'install' command dictate our installation directory
66 # from the umbrella 'install' command -- build (source) directory,
129 # Get the "--root" directory supplied to the "install" command,
183 """Return the list of files that would be installed if this command
204 """Get the list of files that are input to this command, ie. the
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_cmd.py 6 from distutils.cmd import Command
11 class MyCmd(Command):
64 wanted = ["command options for 'MyCmd':", ' option1 = 1',
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
bdist_rpm.py 1 """distutils.command.bdist_rpm
3 Implements the Distutils 'bdist_rpm' command (create RPM source and binary
12 from distutils.core import Command
19 class bdist_rpm (Command):
51 # supply it on the command line.
435 # XXX yuck! this filename is available from the "sdist" command,
bdist_wininst.py 1 """distutils.command.bdist_wininst
3 Implements the Distutils 'bdist_wininst' command: create a windows installer
14 from distutils.core import Command
20 class bdist_wininst (Command):
91 # next the command will be initialized using that name
check.py 1 """distutils.command.check
3 Implements the Distutils 'check' command.
7 from distutils.core import Command
38 class check(Command):
39 """This command checks the meta-data of the package.
64 return Command.warn(self, msg)
67 """Runs the command."""
install_lib.py 1 """distutils.command.install_lib
3 Implements the Distutils 'install_lib' command
11 from distutils.core import Command
21 class install_lib(Command):
56 # let the 'install' command dictate our installation directory
66 # from the umbrella 'install' command -- build (source) directory,
129 # Get the "--root" directory supplied to the "install" command,
183 """Return the list of files that would be installed if this command
204 """Get the list of files that are input to this command, ie. the
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_cmd.py 6 from distutils.cmd import Command
11 class MyCmd(Command):
64 wanted = ["command options for 'MyCmd':", ' option1 = 1',
  /external/chromium_org/third_party/icu/source/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/chromium_org/third_party/icu/source/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/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/chromium_org/content/browser/devtools/
devtools_protocol.h 49 class Command : public Message {
71 virtual ~Command();
75 Command(int id, const std::string& method,
80 DISALLOW_COPY_AND_ASSIGN(Command);
91 friend class Command;
126 scoped_refptr<DevToolsProtocol::Command> command)> CommandHandler;
131 scoped_refptr<DevToolsProtocol::Command> command);
138 void RegisterCommandHandler(const std::string& command,
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
Editor.h 143 class Command {
145 Command();
146 Command(const EditorInternalCommand*, EditorCommandSource, PassRefPtr<Frame>);
164 Command command(const String& commandName); // Command source is CommandFromMenuOrKeyBinding.
165 Command command(const String& commandName, EditorCommandSource);
  /external/chromium_org/third_party/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...]
  /external/chromium_org/tools/site_compare/
command_line.py 6 """Parse a command line, retrieving a command and its arguments.
8 Supports the concept of command line commands, each with its own set
32 class Command(object):
33 """Implements a single command."""
36 """Initializes Command from names and helptext, plus optional callables.
39 names: command name, or list of synonyms
40 helptext: brief string description of the command
43 impl: callable to be invoked when command is called
56 """Encapsulates an argument to a command.""
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/
test_runner.py 5 """Parses the command line, discovers the appropriate tests, and runs them.
23 class Command(object):
47 class Help(Command):
51 print >> sys.stderr, ('usage: %s <command> [<options>]' % _GetScriptName())
53 for command in COMMANDS:
54 print >> sys.stderr, ' %-10s %s' % (command.name, command.description)
58 class List(Command):
95 class Run(Command):
112 # Allow tests to add their own command line options
    [all...]
  /external/clang/include/clang/Driver/
Job.h 20 class Command;
42 /// addCommand - Append a command to the current job, which must be
44 void addCommand(Command *C);
47 /// Command - An executable path/name and argument vector to
49 class Command : public Job {
66 Command(const Action &_Source, const Tool &_Creator, const char *_Executable,
  /external/llvm/utils/lit/lit/
ShUtil.py 5 from lit.ShCommands import Command, Pipeline, Seq
191 raise ValueError("empty command!")
204 # If this is an argument, just add it to the current command.
221 return Command(args, redirects)
291 Pipeline([Command(['echo', 'hello'], [])], False))
293 Pipeline([Command(['echo', ''], [])], False))
295 Pipeline([Command(['echo', '-DFOO=a'], [])], False))
297 Pipeline([Command(['echo', '-DFOO=a'], [])], False))
301 Pipeline([Command(['echo', 'hello'],
304 Pipeline([Command(['echo', 'hello'], [(('>',), 'c')
    [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
81 final Command command = getCommand(arguments); local
    [all...]

Completed in 418 milliseconds

1 23 4 5 6