Searched defs:Command (Results 1 - 25 of 68) sorted by relevance

123

/external/chromium_org/chrome/test/chromedriver/
H A Dcommand.h28 const CommandCallback&)> Command; typedef
/external/chromium_org/ui/file_manager/gallery/js/image_editor/
H A Dcommands.js8 * Command queue is the only way to modify images.
10 * Command execution is asynchronous (callback-based).
127 * @param {Command} command The command to execute.
156 * @param {Command} command Command to execute.
264 * Command object encapsulates an operation on an image and a way to visualize
267 * @param {string} name Command name.
270 function Command(name) { class
277 Command.prototype.toString = function() {
278 return 'Command '
[all...]
/external/clang/test/CodeGenCXX/
H A D2005-02-19-BitfieldStructCrash.cpp5 struct Command { struct
6 Command(QChar c) : c(c) {} function in struct:Command
11 Command X(QChar('c'));
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/extensions/searchvox/
H A Dcontext_menu.js24 var Command = {
33 cvox.SearchContextMenu.currState = Command.MAIN;
42 case Command.TOOLS:
46 case Command.ADS:
50 case Command.MAIN:
68 case Command.TOOLS:
71 case Command.ADS:
72 case Command.MAIN:
84 if (cvox.SearchContextMenu.currState === Command.TOOLS) {
90 cvox.SearchContextMenu.currState = Command
[all...]
/external/bison/doc/
H A Drefcard.tex315 \section{Command Line Options}
/external/chromium_org/tools/cr/cr/commands/
H A Dcommand.py4 """Module to hold the Command plugin."""
11 class Command(cr.Plugin, cr.Plugin.Type): class in inherits:cr.Plugin, cr.Plugin.Type
34 super(Command, self).__init__()
/external/chromium_org/ui/views/examples/
H A Dwidget_example.h30 enum Command { enum in class:views::examples::WidgetExample
/external/llvm/utils/lit/lit/
H A DShCommands.py1 class Command: class in inherits:
7 return 'Command(%r, %r)' % (self.args, self.redirects)
10 if not isinstance(other, Command):
/external/chromium_org/chrome/test/chromedriver/chrome/
H A Dgeolocation_override_manager_unittest.cc18 struct Command { struct in namespace:__anon5922
19 Command() {} function in struct:__anon5922::Command
20 Command(const std::string& method, const base::DictionaryValue& params) function in struct:__anon5922::Command
24 Command(const Command& command) { function in struct:__anon5922::Command
27 Command& operator=(const Command& command) {
33 ~Command() {}
49 commands_.push_back(Command(method, params));
53 std::vector<Command> commands
[all...]
H A Dmobile_emulation_override_manager_unittest.cc19 struct Command { struct in namespace:__anon5927
20 Command() {} function in struct:__anon5927::Command
21 Command(const std::string& method, const base::DictionaryValue& params) function in struct:__anon5927::Command
25 Command(const Command& command) { function in struct:__anon5927::Command
28 Command& operator=(const Command& command) {
34 ~Command() {}
50 commands_.push_back(Command(method, params));
54 std::vector<Command> commands
[all...]
/external/chromium_org/chrome/common/extensions/
H A Dcommand.h24 class Command { class in namespace:extensions
26 Command();
27 Command(const std::string& command_name,
31 ~Command();
33 // The platform value for the Command.
56 // Convert a Command object from |extension| to a DictionaryValue.
83 typedef std::map<std::string, Command> CommandMap;
H A Dcommand.cc29 "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.
101 // Search is a special modifier only on ChromeOS and maps to 'Command'
261 Command::Command() : global_(false) {} function in class:extensions::Command
263 Command::Command(const std::string& command_name, function in class:extensions::Command
[all...]
/external/chromium_org/chrome/test/chromedriver/client/
H A Dwebelement.py5 from command_executor import Command namespace
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)
50 self._Execute(Command.SEND_KEYS_TO_ELEMENT, {'value': typing})
53 return self._Execute(Command
[all...]
/external/chromium_org/third_party/brotli/src/brotli/enc/
H A Dcommand.h24 // Command holds a sequence of literals and a backward reference copy.
25 class Command { class in namespace:brotli
31 Command() : insert_length_(0), copy_length_(0), copy_length_code_(0), function in class:brotli::Command
/external/chromium_org/tools/telemetry/telemetry/core/
H A Dcommand_line.py31 class Command(ArgumentHandlerMixIn): class in inherits:ArgumentHandlerMixIn
59 class OptparseCommand(Command):
81 class SubcommandCommand(Command):
/external/chromium_org/ui/file_manager/file_manager/foreground/js/
H A Dfile_manager_commands.js12 cr.ui.Command.prototype.setHidden = function(value) {
20 var Command = function() {}; class
24 * @param {Event} event Command event.
27 Command.prototype.execute = function(event, fileManager) {};
34 Command.prototype.canExecute = function(event, fileManager) {};
83 * @param {Event} event Command event to mark.
93 * @param {Event} event Command event to mark.
106 * @param {Event} event Command event to mark.
114 * @param {Event} event Command event.
158 * @param {string} commandId Command i
[all...]
/external/chromium_org/athena/wm/
H A Dwindow_manager_impl.h52 enum Command { enum in class:athena::WindowManagerImpl
/external/chromium_org/chrome/browser/devtools/
H A Ddevtools_protocol.h38 class Command : public Message { class in class:DevToolsProtocol
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);
H A Ddevtools_protocol.cc37 DevToolsProtocol::Command::Command(int id, function in class:DevToolsProtocol::Command
44 DevToolsProtocol::Command::~Command() {
47 std::string DevToolsProtocol::Command::Serialize() {
60 DevToolsProtocol::Command::SuccessResponse(base::DictionaryValue* result) {
66 DevToolsProtocol::Command::InvalidParamResponse(const std::string& param) {
120 DevToolsProtocol::Command* DevToolsProtocol::ParseCommand(
135 return new Command(id, method, params);
/external/antlr/antlr-3.4/runtime/Python/
H A Dsetup.py10 from distutils.cmd import Command namespace
65 class unittest(Command):
150 class functest(Command):
/external/chromium_org/athena/home/
H A Dhome_card_impl.h60 enum Command { enum in class:athena::HomeCardImpl
/external/chromium_org/athena/screen/
H A Dscreen_accelerator_handler.cc20 enum Command { enum in namespace:athena::__anon2147
/external/chromium_org/chrome/browser/
H A Dcommand_updater.cc15 class CommandUpdater::Command { class in class:CommandUpdater
20 Command() : enabled(true) {} function in class:CommandUpdater::Command
68 Command* command = it->second;
75 Command* command = GetCommand(id, true);
83 CommandUpdater::Command* CommandUpdater::GetCommand(int id, bool create) {
88 Command* command = new Command;
/external/chromium_org/chrome/browser/net/
H A Dnet_log_temp_file.h45 enum Command { enum in class:NetLogTempFile
54 void ProcessCommand(Command command);
/external/lzma/Java/SevenZip/
H A DLzmaAlone.java11 public int Command = -1; field in class:LzmaAlone.CommandLine
107 Command = kEncode;
109 Command = kDecode;
111 Command = kBenchmak;
117 if (Command == kBenchmak)
181 if (params.Command == CommandLine.kBenchmak)
190 else if (params.Command == CommandLine.kEncode || params.Command == CommandLine.kDecode)
201 if (params.Command == CommandLine.kEncode)

Completed in 691 milliseconds

123