HomeSort by relevance Sort by last modified time
    Searched refs:Command (Results 1 - 25 of 464) 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/content/browser/devtools/
renderer_overrides_handler.h 44 void ParseCaptureParameters(DevToolsProtocol::Command* command,
53 scoped_refptr<DevToolsProtocol::Command> command);
57 scoped_refptr<DevToolsProtocol::Command> command);
59 scoped_refptr<DevToolsProtocol::Command> command);
63 scoped_refptr<DevToolsProtocol::Command> command);
    [all...]
devtools_power_handler.h 27 scoped_refptr<DevToolsProtocol::Command> command);
29 scoped_refptr<DevToolsProtocol::Command> command);
31 scoped_refptr<DevToolsProtocol::Command> command);
devtools_system_info_handler.h 21 scoped_refptr<DevToolsProtocol::Command> command);
devtools_tracing_handler.h 36 void OnTracingStarted(scoped_refptr<DevToolsProtocol::Command> command);
40 scoped_refptr<DevToolsProtocol::Command> command);
42 scoped_refptr<DevToolsProtocol::Command> command);
45 scoped_refptr<DevToolsProtocol::Command> command);
46 void OnCategoriesReceived(scoped_refptr<DevToolsProtocol::Command> command,
    [all...]
tethering_handler.h 29 scoped_refptr<DevToolsProtocol::Command> command);
31 scoped_refptr<DevToolsProtocol::Command> command);
  /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
121 response = self._ExecuteCommand(Command.NEW_SESSION, params)
155 def _ExecuteCommand(self, command, params={}):
157 response = self._executor.Execute(command, params)
162 def ExecuteCommand(self, command, params={}):
164 response = self._ExecuteCommand(command, params)
168 return self.ExecuteCommand(Command.GET_WINDOW_HANDLES)
171 self.ExecuteCommand(Command.SWITCH_TO_WINDOW, {'name': handle_or_name})
174 return self.ExecuteCommand(Command.GET_CURRENT_WINDOW_HANDLE)
177 self.ExecuteCommand(Command.CLOSE
    [all...]
  /frameworks/testing/uiautomator/cmds/uiautomator/src/com/android/commands/uiautomator/
Launcher.java 24 * Entry point into the uiautomator command line
27 * command line arguments. It also prints out help arguments for each sub commands.
29 * To add a new sub command, implement {@link Command} and add an instance into COMMANDS array
36 public static abstract class Command {
39 public Command(String name) {
44 * Returns the name of the sub command
52 * Returns a one-liner of the function of this command
58 * Returns a detailed explanation of the command usage
66 * Starts the command with the provided argument
76 Command command = findCommand(args[0]); local
    [all...]
  /frameworks/base/cmds/svc/src/com/android/commands/svc/
Svc.java 21 public static abstract class Command {
24 public Command(String name) {
34 public abstract void run(String[] args); // run the command
39 Command c = lookupCommand(args[0]);
48 private static Command lookupCommand(String name) {
51 Command c = COMMANDS[i];
59 public static final Command COMMAND_HELP = new Command("help") {
68 Command c = lookupCommand(args[1]);
79 Command c = COMMANDS[i]
    [all...]
  /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
  /frameworks/av/services/audioflinger/
FastThreadState.h 33 typedef uint32_t Command;
34 static const Command
41 Command mCommand; // current command
57 FastThreadState::Command mCommand; // current command
  /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...]
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
Crypt.java 37 static public class Encrypter extends Dicttool.Command {
38 public static final String COMMAND = "encrypt";
45 return COMMAND + " <src_filename> <dst_filename>: Encrypts a file";
54 static public class Decrypter extends Dicttool.Command {
55 public static final String COMMAND = "decrypt";
62 return COMMAND + " <src_filename> <dst_filename>: Decrypts a file";

Completed in 1146 milliseconds

1 2 3 4 5 6 7 8 91011>>