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

1 2 3 4 5 6

  /external/chromium_org/chrome/test/chromedriver/
command.h 28 const CommandCallback&)> Command;
  /external/chromium_org/chrome/browser/resources/file_manager/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/bison/doc/
refcard.tex 315 \section{Command Line Options}
511 % compile-command: "tex refcard"
  /external/chromium_org/chrome/test/webdriver/commands/
command.h 25 // Base class for a command mapped to a URL in the WebDriver REST API. Each
29 class Command {
31 Command(const std::vector<std::string>& path_segments,
33 virtual ~Command();
35 // Indicates which HTTP methods this command URL responds to.
40 // Initializes this command for execution. If initialization fails, will
45 // Called after this command is executed. Returns NULL if no error occurs.
50 // Executes the corresponding variant of this command URL.
60 // request URL for this command. If the index is out of bounds, an empty
64 // Returns whether the command has a parameter with the given |key|
    [all...]
command.cc 5 #include "chrome/test/webdriver/commands/command.h"
9 Command::Command(const std::vector<std::string>& path_segments,
14 Command::~Command() {}
16 bool Command::DoesDelete() {
20 bool Command::DoesGet() {
24 bool Command::DoesPost() {
28 bool Command::Init(Response* const response) {
32 void Command::Finish(Response* const response) {
    [all...]
  /external/chromium_org/ui/aura/client/
user_action_client.h 18 enum Command {
23 // Returns true if the command was handled and false otherwise.
24 virtual bool OnUserAction(Command command) = 0;
  /external/chromium_org/ui/views/examples/
widget_example.h 30 enum Command {
  /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,
36 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):
  /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...]
  /external/chromium_org/chrome/browser/devtools/
devtools_protocol.cc 27 DevToolsProtocol::Command::Command(int id,
34 DevToolsProtocol::Command::~Command() {
37 std::string DevToolsProtocol::Command::Serialize() {
38 base::DictionaryValue command; local
39 command.SetInteger(kIdParam, id_);
40 command.SetString(kMethodParam, method_);
42 command.Set(kParamsParam, params_->DeepCopy());
45 base::JSONWriter::Write(&command, &json_command)
    [all...]
devtools_protocol.h 37 class Command : public Message {
40 Command(int id, const std::string& method, base::DictionaryValue* params);
41 virtual ~Command();
49 DISALLOW_COPY_AND_ASSIGN(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,
30 ~Command();
32 // The platform value for the Command.
43 // Parse the command.
44 bool Parse(const base::DictionaryValue* command,
49 // Convert a Command object from |extension| to a DictionaryValue.
50 // |active| specifies whether the command is active or not.
70 // 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 self._Execute(Command.HOVER_OVER_ELEMENT)
32 self._Execute(Command.CLICK_ELEMENT)
35 self._Execute(Command.TOUCH_SINGLE_TAP)
38 self._Execute(Command.CLEAR_ELEMENT)
47 self._Execute(Command.SEND_KEYS_TO_ELEMENT, {'value': typing}
    [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"
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):

Completed in 560 milliseconds

1 2 3 4 5 6