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

1 2 3

  /external/chromium_org/chrome/test/chromedriver/
command.h 28 const CommandCallback&)> Command;
  /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 19 struct Command {
20 Command() {}
21 Command(const std::string& method, const base::DictionaryValue& params)
25 Command(const Command& command) {
26 *this = command;
28 Command& operator=(const Command& command) {
    [all...]
  /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...]
command.cc 5 #include "chrome/common/extensions/command.h"
29 "Command key is not supported. Note: Ctrl means Command on Mac";
82 // Either the developer specified Command+foo in the manifest for Mac or
83 // they specified Ctrl and it got normalized to Command (to get Ctrl on
85 // as Command.
89 // If we see "Command+foo" in the Default section it can mean two
92 // on Mac to "Command+foo". This is fine. Treat it as Command.
96 // No other platform supports Command
195 bool command = (modifiers & ui::EF_COMMAND_DOWN) != 0; local
    [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...]
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/
file_manager_commands.js 12 cr.ui.Command.prototype.setHidden = function(value) {
17 * A command.
20 var Command = function() {};
24 * @param {Event} event Command event.
27 Command.prototype.execute = function(event, fileManager) {};
34 Command.prototype.canExecute = function(event, fileManager) {};
42 * Extracts entry on which command event was dispatched.
82 * Checks if command can be executed on drive.
83 * @param {Event} event Command event to mark.
91 * Sets the command as visible only when the current volume is drive and it'
    [all...]
  /external/chromium_org/chrome/browser/devtools/
devtools_protocol.cc 37 DevToolsProtocol::Command::Command(int id,
44 DevToolsProtocol::Command::~Command() {
47 std::string DevToolsProtocol::Command::Serialize() {
48 base::DictionaryValue command; local
49 command.SetInteger(kIdParam, id_);
50 command.SetString(kMethodParam, method_);
52 command.Set(kParamsParam, params_->DeepCopy());
55 base::JSONWriter::Write(&command, &json_command)
    [all...]
devtools_protocol.h 38 class Command : public Message {
40 Command(int id, const std::string& method, base::DictionaryValue* params);
41 virtual ~Command();
55 DISALLOW_COPY_AND_ASSIGN(Command);
96 static Command* ParseCommand(base::DictionaryValue* command_dict);
  /external/chromium_org/third_party/icu/source/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/icu/icu4c/source/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_org/athena/screen/
screen_accelerator_handler.cc 20 enum Command {
  /external/chromium_org/athena/wm/
window_manager_impl.h 52 enum Command {
  /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/athena/home/
home_card_impl.h 60 enum Command {

Completed in 644 milliseconds

1 2 3