/external/chromium_org/chrome/test/chromedriver/ |
command.h | 28 const CommandCallback&)> Command;
|
/external/chromium_org/chrome/browser/resources/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/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/third_party/chromevox/extensions/searchvox/ |
context_menu.js | 22 var Command = { 31 cvox.SearchContextMenu.currState = Command.MAIN; 40 case Command.TOOLS: 44 case Command.ADS: 48 case Command.MAIN: 62 var command = cvox.ChromeVoxKbHandler.handlerKeyMap.commandForKey(keySeq); 64 if (!command || command === 'performDefaultAction') { 66 case Command.TOOLS: 69 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 context: The context to select the command for. 29 the selected command, or None if not specified on the command line. 36 super(Command, self).__init__( [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, 31 ~Command(); 33 // The platform value for the Command. 45 // Parse the command. 46 bool Parse(const base::DictionaryValue* command, 51 // Convert a Command object from |extension| to a DictionaryValue. 52 // |active| specifies whether the command is active or not. 77 // 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):
|