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

1 2 3 4 5 6 7 8 91011

  /cts/libs/vogar-expect/src/vogar/commands/
Rm.java 22 * A rm command.
27 new Command("rm", "-f", file.getPath()).execute();
31 new Command("rm", "-rf", directory.getPath()).execute();
Mkdir.java 22 * A mkdir command.
27 new Command("mkdir", "-p", directory.getPath()).execute();
  /external/chromium_org/tools/cr/cr/
autocomplete.py 8 current command line.
15 """Attempts to build a completion list for the current command line.
18 the index of that word on the command line.
21 # TODO(iancottrell): support auto complete of more than just the command
22 # try to parse the command line using parser
23 print ' '.join(command.name for command in cr.Command.Plugins())
  /external/clang/test/CodeGenCXX/
2005-02-19-BitfieldStructCrash.cpp 5 struct Command {
6 Command(QChar c) : c(c) {}
11 Command X(QChar('c'));
  /external/emma/core/java12/
emmarun.java 9 import com.vladium.emma.Command;
26 final Command command = Command.create ("run", emmarun.class.getName (), args); local
27 command.run ();
emma.java 10 import com.vladium.emma.Command;
39 final Command command = Command.create (commandName, "emma ".concat (commandName), commandArgs); local
40 command.run ();
53 "emma usage: emma <command> [command options]," + EOL +
54 " where <command> is one of:" + EOL +
61 " {use '<command> -h' to see usage help for a given command}" + EOL
    [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...]
chromedriver.py 6 from command_executor import Command
125 response = self._ExecuteCommand(Command.NEW_SESSION, params)
159 def _ExecuteCommand(self, command, params={}):
161 response = self._executor.Execute(command, params)
166 def ExecuteCommand(self, command, params={}):
168 response = self._ExecuteCommand(command, params)
172 return self.ExecuteCommand(Command.GET_WINDOW_HANDLES)
175 self.ExecuteCommand(Command.SWITCH_TO_WINDOW, {'name': handle_or_name})
178 return self.ExecuteCommand(Command.GET_CURRENT_WINDOW_HANDLE)
181 self.ExecuteCommand(Command.CLOSE
    [all...]
  /external/chromium_org/content/browser/devtools/
devtools_power_handler.h 29 scoped_refptr<DevToolsProtocol::Command> command);
31 scoped_refptr<DevToolsProtocol::Command> command);
33 scoped_refptr<DevToolsProtocol::Command> command);
35 scoped_refptr<DevToolsProtocol::Command> command);
renderer_overrides_handler.h 58 scoped_refptr<DevToolsProtocol::Command> command);
62 scoped_refptr<DevToolsProtocol::Command> command);
64 scoped_refptr<DevToolsProtocol::Command> command);
66 scoped_refptr<DevToolsProtocol::Command> command);
70 scoped_refptr<DevToolsProtocol::Command> command);
    [all...]
devtools_system_info_handler.h 21 scoped_refptr<DevToolsProtocol::Command> command);
devtools_tracing_handler.h 37 void OnRecordingEnabled(scoped_refptr<DevToolsProtocol::Command> command);
41 scoped_refptr<DevToolsProtocol::Command> command);
43 scoped_refptr<DevToolsProtocol::Command> command);
46 scoped_refptr<DevToolsProtocol::Command> command);
48 void OnCategoriesReceived(scoped_refptr<DevToolsProtocol::Command> command,
    [all...]
tethering_handler.h 27 scoped_refptr<DevToolsProtocol::Command> command);
29 scoped_refptr<DevToolsProtocol::Command> command);
  /external/chromium_org/chrome/browser/
command_updater.h 30 // Returns true if the specified command ID is supported.
33 // Returns true if the specified command ID is enabled. The command ID must be
37 // Performs the action associated with this command ID using CURRENT_TAB
39 // Returns true if the command was executed (i.e. it is supported and is
43 // Performs the action associated with this command ID using the given
45 // Returns true if the command was executed (i.e. it is supported and is
49 // Adds an observer to the state of a particular command. If the command does
53 // Removes an observer to the state of a particular command
    [all...]
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/api/commands/
commands_handler.h 11 #include "chrome/common/extensions/command.h"
25 // Get*Command[s] in CommandService).
26 scoped_ptr<Command> browser_action_command;
27 scoped_ptr<Command> page_action_command;
30 static const Command* GetBrowserActionCommand(const Extension* extension);
31 static const Command* GetPageActionCommand(const Extension* extension);
45 // If the extension defines a browser action, but no command for it, then
  /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/chrome/browser/devtools/
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/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/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/clang/lib/AST/
CommentCommandTraits.cpp 1 //===--- CommentCommandTraits.cpp - Comment command properties --*- C++ -*-===//
48 // Single-character command impostures, such as \t or \n, should not go
59 auto ConsiderCorrection = [&](const CommandInfo *Command) {
60 StringRef Name = Command->Name;
70 BestCommand.push_back(Command);
74 for (const auto &Command : Commands)
75 ConsiderCorrection(&Command);
77 for (const auto *Command : RegisteredCommands)
78 if (!Command->IsUnknownCommand)
79 ConsiderCorrection(Command);
    [all...]
CommentSema.cpp 62 void Sema::actOnBlockCommandArgs(BlockCommandComment *Command,
64 Command->setArgs(Args);
67 void Sema::actOnBlockCommandFinish(BlockCommandComment *Command,
69 Command->setParagraph(Paragraph);
70 checkBlockCommandEmptyParagraph(Command);
71 checkBlockCommandDuplicate(Command);
75 checkReturnsCommand(Command);
76 checkDeprecatedCommand(Command);
85 ParamCommandComment *Command =
90 Diag(Command->getLocation()
    [all...]
  /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/test/chromedriver/
command.h 28 const CommandCallback&)> Command;

Completed in 570 milliseconds

1 2 3 4 5 6 7 8 91011