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

1 2 3 4 5 6 7

  /external/chromium_org/chrome/test/chromedriver/
command.h 28 const CommandCallback&)> Command;
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/image_editor/
commands.js 8 * Command queue is the only way to modify images.
10 * Command execution is asynchronous (callback-based).
47 * Attach the UI elements to the command queue.
74 * @return {boolean} True if the command queue is busy.
91 ImageUtil.trace.resetTimer('command-busy');
111 ImageUtil.trace.reportTimer('command-busy');
125 * Internal function to execute the command in a given context.
127 * @param {Command} command The command to execute
    [all...]
  /external/chromium_org/ui/file_manager/gallery/js/image_editor/
commands.js 8 * Command queue is the only way to modify images.
10 * Command execution is asynchronous (callback-based).
47 * Attach the UI elements to the command queue.
74 * @return {boolean} True if the command queue is busy.
91 ImageUtil.trace.resetTimer('command-busy');
111 ImageUtil.trace.reportTimer('command-busy');
125 * Internal function to execute the command in a given context.
127 * @param {Command} command The command to execute
    [all...]
  /external/clang/test/CodeGenCXX/
2005-02-19-BitfieldStructCrash.cpp 5 struct Command {
6 Command(QChar c) : c(c) {}
11 Command X(QChar('c'));
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/extensions/searchvox/
context_menu.js 24 var Command = {
33 cvox.SearchContextMenu.currState = Command.MAIN;
42 case Command.TOOLS:
46 case Command.ADS:
50 case Command.MAIN:
64 var command = cvox.ChromeVoxKbHandler.handlerKeyMap.commandForKey(keySeq);
66 if (!command || command === 'performDefaultAction') {
68 case Command.TOOLS:
71 case Command.ADS
    [all...]
  /external/bison/doc/
refcard.tex 315 \section{Command Line Options}
511 % compile-command: "tex refcard"
  /external/chromium_org/tools/cr/cr/commands/
command.py 4 """Module to hold the Command plugin."""
11 class Command(cr.Plugin, cr.Plugin.Type):
14 These are the sub-commands on the command line, and modify the
22 """Called to select which command is active.
24 This picks a command based on the first non - argument on the command
27 the selected command, or None if not specified on the command line.
34 super(Command, self).__init__()
42 """Add arguments to the command line parser
    [all...]
  /external/chromium_org/ui/views/examples/
widget_example.h 30 enum Command {
  /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):
  /external/chromium_org/chrome/test/chromedriver/chrome/
geolocation_override_manager_unittest.cc 18 struct Command {
19 Command() {}
20 Command(const std::string& method, const base::DictionaryValue& params)
24 Command(const Command& command) {
25 *this = command;
27 Command& operator=(const Command& command) {
    [all...]
mobile_emulation_override_manager_unittest.cc 18 struct Command {
19 Command() {}
20 Command(const std::string& method, const base::DictionaryValue& params)
24 Command(const Command& command) {
25 *this = command;
27 Command& operator=(const Command& command) {
    [all...]
  /external/chromium_org/athena/screen/
screen_accelerator_handler.cc 17 enum Command {
  /external/chromium_org/chrome/browser/
command_updater.cc 15 class CommandUpdater::Command {
20 Command() : enabled(true) {}
36 const CommandMap::const_iterator command(commands_.find(id));
37 if (command == commands_.end())
39 return command->second->enabled;
68 Command* command = it->second; local
69 if (command)
70 command->observers.RemoveObserver(observer);
75 Command* command = GetCommand(id, true) local
88 Command* command = new Command; local
    [all...]
  /external/chromium_org/chrome/common/extensions/
command.h 24 class Command {
26 Command();
27 Command(const std::string& command_name,
31 ~Command();
33 // The platform value for the Command.
50 // Parse the command.
51 bool Parse(const base::DictionaryValue* command,
56 // Convert a Command object from |extension| to a DictionaryValue.
57 // |active| specifies whether the command is active or not.
82 // A mapping of command name (std::string) to a command object
    [all...]
  /external/chromium_org/chrome/test/chromedriver/client/
webelement.py 5 from command_executor import Command
14 def _Execute(self, command, params=None):
18 return self._chromedriver.ExecuteCommand(command, params)
22 Command.FIND_CHILD_ELEMENT, {'using': strategy, 'value': target})
26 Command.FIND_CHILD_ELEMENTS, {'using': strategy, 'value': target})
29 return self._Execute(Command.GET_ELEMENT_TEXT)
32 self._Execute(Command.HOVER_OVER_ELEMENT)
35 self._Execute(Command.CLICK_ELEMENT)
38 self._Execute(Command.TOUCH_SINGLE_TAP)
41 self._Execute(Command.CLEAR_ELEMENT
    [all...]
  /external/chromium_org/third_party/brotli/src/brotli/enc/
command.h 24 // Command holds a sequence of literals and a backward reference copy.
25 class Command {
28 // code of a backward distance of 1, this way the last insert-only command
31 Command() : insert_length_(0), copy_length_(0), copy_length_code_(0),
  /external/chromium_org/tools/telemetry/telemetry/core/
command_line.py 12 """A structured way to handle command-line arguments.
14 In AddCommandLineArgs, add command-line arguments.
22 """Override to accept custom command-line arguments."""
26 """Override to process command-line arguments.
31 class Command(ArgumentHandlerMixIn):
32 """An abstraction for things that run from the command-line."""
50 """Main method to run this command as a standalone script."""
59 class OptparseCommand(Command):
72 """Main method to run this command as a standalone script."""
81 class SubcommandCommand(Command)
    [all...]
  /frameworks/av/include/media/
IStreamSource.h 50 enum Command {
69 // command.
85 Command cmd, bool synchronous, const sp<AMessage> &msg = NULL) = 0;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
clean.py 1 """distutils.command.clean
3 Implements the Distutils 'clean' command."""
10 from distutils.core import Command
14 class clean(Command):
16 description = "clean up temporary files from 'build' command"
install_data.py 1 """distutils.command.install_data
3 Implements the Distutils 'install_data' command, for installing
11 from distutils.core import Command
14 class install_data(Command):
install_egg_info.py 1 """distutils.command.install_egg_info
3 Implements the Distutils 'install_egg_info' command, for installing
7 from distutils.cmd import Command
11 class install_egg_info(Command):
install_headers.py 1 """distutils.command.install_headers
3 Implements the Distutils 'install_headers' command, to install C/C++ header
8 from distutils.core import Command
12 class install_headers(Command):
install_scripts.py 1 """distutils.command.install_scripts
3 Implements the Distutils 'install_scripts' command, for installing
11 from distutils.core import Command
15 class install_scripts (Command):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
config.py 3 Provides the PyPIRCCommand class, the base class for the command classes
4 that uses .pypirc in the distutils.command package.
9 from distutils.cmd import Command
21 class PyPIRCCommand(Command):
22 """Base command that knows how to handle the .pypirc file
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
clean.py 1 """distutils.command.clean
3 Implements the Distutils 'clean' command."""
10 from distutils.core import Command
14 class clean(Command):
16 description = "clean up temporary files from 'build' command"

Completed in 1113 milliseconds

1 2 3 4 5 6 7