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

1 23 4 5 6 7

  /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/chromium_org/chrome/browser/net/
net_log_temp_file.h 45 enum Command {
53 // Accepts the button command and executes it.
54 void ProcessCommand(Command command);
  /external/clang/lib/Driver/
Job.cpp 1 //===--- Job.cpp - Command to Execute -------------------------------------===//
27 Command::Command(const Action &_Source, const Tool &_Creator,
96 void Command::Print(raw_ostream &OS, const char *Terminator, bool Quote,
121 int Command::Execute(const StringRef **Redirects, std::string *ErrMsg,
137 Command *Fallback_)
138 : Command(Source_, Creator_, Executable_, Arguments_), Fallback(Fallback_) {
143 Command::Print(OS, "", Quote, CrashReport);
157 int PrimaryStatus = Command::Execute(Redirects, ErrMsg, ExecutionFailed);
  /frameworks/av/services/audioflinger/
FastThreadState.h 33 typedef uint32_t Command;
34 static const Command
41 Command mCommand; // current command
57 FastThreadState::Command mCommand; // current 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( \
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
lmat.h 27 LPWSTR Command;
36 LPWSTR 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/icu/icu4c/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/icu/icu4c/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/chromium_org/athena/content/
web_activity.cc 20 enum Command {
  /external/chromium_org/athena/home/
home_card_impl.cc 81 enum Command {
  /external/chromium_org/content/browser/devtools/
devtools_protocol.h 49 class Command : public Message {
74 virtual ~Command();
78 Command(int id, const std::string& method,
83 DISALLOW_COPY_AND_ASSIGN(Command);
94 friend class Command;
129 scoped_refptr<DevToolsProtocol::Command> command)> CommandHandler;
134 scoped_refptr<DevToolsProtocol::Command> command);
141 void RegisterCommandHandler(const std::string& command,
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
Editor.h 137 class Command {
139 Command();
140 Command(const EditorInternalCommand*, EditorCommandSource, PassRefPtr<LocalFrame>);
153 // Returns 0 if this Command is not supported.
160 Command command(const String& commandName); // Command source is CommandFromMenuOrKeyBinding.
161 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...]

Completed in 374 milliseconds

1 23 4 5 6 7