HomeSort by relevance Sort by last modified time
    Searched refs:commands (Results 26 - 50 of 352) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/webkit/Tools/Scripts/webkitpy/tool/commands/
roll_unittest.py 30 from webkitpy.tool.commands.commandtest import CommandsTest
31 from webkitpy.tool.commands.roll import *
sheriffbot_unittest.py 31 from webkitpy.tool.commands.queuestest import QueuesTest
32 from webkitpy.tool.commands.sheriffbot import SheriffBot
roll.py 29 from webkitpy.tool.commands.abstractsequencedcommand import AbstractSequencedCommand
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyNoopEvent.java 17 package com.android.commands.monkey;
MonkeyUtils.java 17 package com.android.commands.monkey;
MonkeyEvent.java 17 package com.android.commands.monkey;
  /external/chromium/chrome/browser/sessions/
session_backend.h 24 // . The current file, which is the file commands passed to AppendCommands
29 // Each file contains an arbitrary set of commands supplied from
58 // Appends the specified commands to the current file. If reset_first is
61 // NOTE: this deletes SessionCommands in commands as well as the supplied
63 void AppendCommands(std::vector<SessionCommand*>* commands,
66 // Invoked from the service to read the commands that make up the last
71 // Reads the commands from the last file.
73 // On success, the read commands are added to commands. It is up to the
74 // caller to delete the commands
    [all...]
session_backend.cc 53 // added to commands.
55 std::vector<SessionCommand*>* commands);
59 // either there are no commands, or there was an error. Use errored_ to
89 std::vector<SessionCommand*>* commands) {
106 read_commands->swap(*commands);
221 std::vector<SessionCommand*>* commands,
232 !AppendCommandsToFile(current_session_file_.get(), *commands)) {
236 STLDeleteElements(commands);
237 delete commands;
245 ReadLastSessionCommandsImpl(&(request->commands));
    [all...]
  /external/smack/src/org/jivesoftware/smackx/commands/
AdHocCommandNote.java 21 package org.jivesoftware.smackx.commands;
  /external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/
irc.js 3 * subset of the IRC commands are implemented. To be functional, IRCConnection
33 sendCommand(commands.JOIN, [channel], "");
37 sendCommand(commands.PRIVMSG, [recipient], message);
41 sendCommand(commands.PART, [channel], "");
45 sendCommand(commands.QUIT, [], message);
56 sendCommand(commands.NICK, [this.nick], "");
57 sendCommand(commands.USER,
71 if (parsed.command == commands.PING) {
72 sendCommand(commands.PONG, [], parsed.body);
77 if (parsed.command == commands.PRIVMSG)
    [all...]
  /libcore/luni/src/test/java/tests/api/java/lang/
ProcessManagerTest.java 38 String[] commands = { "cat" }; local
39 Process process = Runtime.getRuntime().exec(commands, null, null);
52 String[] commands = { "sleep", "1" }; local
53 process = Runtime.getRuntime().exec(commands, null, null);
64 String[] commands = { "sleep", "1000"};
66 process = Runtime.getRuntime().exec(commands, null, null);
115 String[] commands = { "sh", "-c", "pwd" }; local
117 commands, null, new File("/"));
123 String[] commands = { "sh", "-c", "echo $FOO" }; local
128 commands, environment, null)
183 String[] commands = { "ls", "\/proc\/self\/fd" }; local
219 String[] commands = { "doesnotexist" }; local
    [all...]
ProcessTest.java 39 String[] commands = { "sleep", "1"}; local
40 Process proc = Runtime.getRuntime().exec(commands, null, null);
75 String[] commands = { "sleep", "1"}; local
76 Process proc = Runtime.getRuntime().exec(commands, null, null);
115 String[] commands = { "ls" }; local
116 Process process = Runtime.getRuntime().exec(commands, null, null);
151 String[] commands = { "ls"}; local
153 Process process = Runtime.getRuntime().exec(commands, null, null);
  /external/chromium/chrome/browser/renderer_host/
gtk_key_bindings_handler.cc 162 const char *commands[3] = { NULL, NULL, NULL }; local
165 commands[0] = (count > 0 ? "DeleteForward" : "DeleteBackward");
168 commands[0] = (count > 0 ? "DeleteWordForward" : "DeleteWordBackward");
172 commands[0] = "MoveWordForward";
173 commands[1] = "DeleteWordBackward";
175 commands[0] = "MoveWordBackward";
176 commands[1] = "DeleteWordForward";
180 commands[0] = "MoveToBeginningOfLine";
181 commands[1] = "DeleteToEndOfLine";
184 commands[0] = (count > 0 ? "DeleteToEndOfLine"
    [all...]
  /external/chromium/chrome/browser/ui/webui/options/
advanced_options_utils_gtk.cc 39 // Search $PATH to find one of the commands. Store the full path to
41 bool SearchPATH(ProxyConfigCommand* commands, size_t ncommands, size_t* index) {
48 // Search $PATH looking for the commands in order.
51 bin_path = FilePath(tk.token()).Append(commands[i].argv[0]);
53 commands[i].binary = bin_path.value();
105 ProxyConfigCommand commands[2]; local
106 commands[0].argv = kGNOMEProxyConfigCommand;
107 commands[1].argv = kOldGNOMEProxyConfigCommand;
108 found_command = SearchPATH(commands, 2, &index);
110 command = commands[index]
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
token.ml 8 (* commands *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
token.ml 8 (* commands *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
token.ml 8 (* commands *)
  /external/llvm/utils/lit/lit/
ShCommands.py 39 def __init__(self, commands, negate=False, pipe_err=False):
40 self.commands = commands
45 return 'Pipeline(%r, %r, %r)' % (self.commands, self.negate,
52 return cmp((self.commands, self.negate, self.pipe_err),
53 (other.commands, other.negate, self.pipe_err))
60 for cmd in self.commands:
62 if cmd is not self.commands[-1]:
  /frameworks/testing/uiautomator/cmds/uiautomator/src/com/android/commands/uiautomator/
EventsCommand.java 17 package com.android.commands.uiautomator;
22 import com.android.commands.uiautomator.Launcher.Command;
  /external/chromium/chrome/browser/ui/cocoa/
command_observer_bridge.h 15 // A C++ bridge class that handles listening for updates to commands and
26 CommandUpdater* commands);
  /external/quake/quake/src/QW/client/
gl_mesh.c 39 int commands[8192]; variable
248 commands[numcommands++] = (bestlen+2);
250 commands[numcommands++] = -(bestlen+2);
258 // emit s/t coords into the commands stream
266 *(float *)&commands[numcommands++] = s;
267 *(float *)&commands[numcommands++] = t;
271 commands[numcommands++] = 0; // end of list marker
308 fread (&commands, numcommands * sizeof(commands[0]), 1, f);
338 fwrite (&commands, numcommands * sizeof(commands[0]), 1, f);
    [all...]
  /external/quake/quake/src/WinQuake/
gl_mesh.cpp 39 int commands[8192]; variable
258 commands[numcommands++] = (bestlen+2);
260 commands[numcommands++] = -(bestlen+2);
268 // emit s/t coords into the commands stream
277 commands[numcommands++] = temp.i;
279 commands[numcommands++] = temp.i;
283 commands[numcommands++] = 0; // end of list marker
323 fread (&commands, numcommands * sizeof(commands[0]), 1, f);
345 fwrite (&commands, numcommands * sizeof(commands[0]), 1, f)
    [all...]
  /ndk/sources/host-tools/make-3.81/
default.c 25 #include "commands.h"
559 f->cmds = (struct commands *) xmalloc (sizeof (struct commands));
561 f->cmds->commands = s[1];
  /external/webkit/Tools/Scripts/webkitpy/tool/
multicommandtool_unittest.py 90 def __init__(self, commands=None):
91 MultiCommandTool.__init__(self, name="trivial-tool", commands=commands)
130 tool = TrivialTool(commands=[likes_to_retry])
135 tool = TrivialTool(commands=[TrivialCommand(), UncommonCommand()])
141 Common trivial-tool commands:
144 See 'trivial-tool help --all-commands' to list all commands.
155 All trivial-tool commands:
160 See 'trivial-tool help --all-commands' to list all commands
    [all...]
  /libcore/luni/src/main/native/
java_lang_ProcessManager.cpp 64 static pid_t executeProcess(JNIEnv* env, char** commands, char** environment,
145 execvp(commands[0], commands);
195 // Copy commands into char*[].
196 char** commands = convertStrings(env, javaCommands); local
207 pid_t result = executeProcess(env, commands, environment, workingDirectory,
221 freeStrings(env, javaCommands, commands);

Completed in 1427 milliseconds

12 3 4 5 6 7 8 91011>>