Searched refs:commands (Results 1 - 25 of 179) sorted by relevance

12345678

/external/webkit/Tools/Scripts/webkitpy/tool/commands/
H A D__init__.py3 from webkitpy.tool.commands.bugsearch import BugSearch
4 from webkitpy.tool.commands.bugfortest import BugForTest
5 from webkitpy.tool.commands.download import *
6 from webkitpy.tool.commands.earlywarningsystem import *
7 from webkitpy.tool.commands.openbugs import OpenBugs
8 from webkitpy.tool.commands.prettydiff import PrettyDiff
9 from webkitpy.tool.commands.queries import *
10 from webkitpy.tool.commands.queues import *
11 from webkitpy.tool.commands.rebaseline import Rebaseline
12 from webkitpy.tool.commands
[all...]
H A Dprettydiff.py29 from webkitpy.tool.commands.abstractsequencedcommand import AbstractSequencedCommand
H A Dopenbugs_unittest.py29 from webkitpy.tool.commands.commandtest import CommandsTest
30 from webkitpy.tool.commands.openbugs import OpenBugs
H A Droll_unittest.py30 from webkitpy.tool.commands.commandtest import CommandsTest
31 from webkitpy.tool.commands.roll import *
H A Dsheriffbot_unittest.py31 from webkitpy.tool.commands.queuestest import QueuesTest
32 from webkitpy.tool.commands.sheriffbot import SheriffBot
H A Droll.py29 from webkitpy.tool.commands.abstractsequencedcommand import AbstractSequencedCommand
/external/chromium/chrome/browser/sessions/
H A Dsession_backend_unittest.cc57 std::vector<SessionCommand*> commands; local
58 commands.push_back(CreateCommandFromData(data));
59 backend->AppendCommands(new SessionCommands(commands), false);
60 commands.clear();
65 backend->ReadLastSessionCommandsImpl(&commands);
67 ASSERT_EQ(1U, commands.size());
68 AssertCommandEqualsData(data, commands[0]);
70 STLDeleteElements(&commands);
74 backend->ReadLastSessionCommandsImpl(&commands);
76 ASSERT_EQ(0U, commands
104 std::vector<SessionCommand*> commands; local
129 std::vector<SessionCommand*> commands; local
169 std::vector<SessionCommand*> commands; local
182 std::vector<SessionCommand*> commands; local
[all...]
H A Dsession_backend.h24 // . 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...]
H A Dsession_backend.cc53 // 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));
88 Read(BaseSessionService::SessionType type, std::vector<SessionCommand*>* commands) argument
220 AppendCommands( std::vector<SessionCommand*>* commands, bool reset_first) argument
251 ReadLastSessionCommandsImpl( std::vector<SessionCommand*>* commands) argument
304 ReadCurrentSessionCommandsImpl( std::vector<SessionCommand*>* commands) argument
311 AppendCommandsToFile(net::FileStream* file, const std::vector<SessionCommand*>& commands) argument
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DAOptimizedMultipleCommand.java18 private final PCommand[] commands; field in class:AOptimizedMultipleCommand
22 commands = new PCommand[originalChildCommands.size()];
23 originalChildCommands.toArray(commands);
24 for (int i = 0; i < commands.length; i++) {
25 commands[i].parent(this); // set parent.
45 for (int i = 0; i < commands.length; i++) {
46 if (commands[i] == oldChild) {
47 commands[i] = (PCommand) newChild;
58 for (int i = 0; i < commands.length; i++) {
59 commands[
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
H A DAbstractApplication.java58 protected void processCommandLine(List commands) { argument
66 protected String[] getArguments(List commands, String param) { argument
67 int index = commands.indexOf(param);
70 commands.remove(index);
71 if (index == commands.size()) // if this is the last command
73 List args = new ArrayList(commands.size());
74 while (index < commands.size()) { // while not the last command
75 String command = (String) commands.get(index);
79 commands.remove(index);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.commands_3.6.0.I20100512-1500.jar ... properties org/ org/eclipse/ org/eclipse/core/ org/eclipse/core/commands/ org/eclipse/core/commands/AbstractHandler.class AbstractHandler.java ...
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/binding/editors/controls/
H A DDefaultControlActionsManager.java13 import org.eclipse.core.commands.AbstractHandler;
14 import org.eclipse.core.commands.ExecutionEvent;
15 import org.eclipse.core.commands.ExecutionException;
16 import org.eclipse.core.commands.IHandler;
21 * Default manager for installing/unistalling global handlers for {@link Control} actions commands.
/external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/
H A Dirc.js3 * 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
[all...]
/external/llvm/utils/lit/lit/
H A DShCommands.py39 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]:
H A DTclUtil.py202 commands = [Command([],[])]
208 commands.append(Command([],[]))
212 commands[-1].redirects.insert(0, (('>&',2),'1'))
213 commands.append(Command([],[]))
215 commands[-1].redirects.append(self.parse_redirect(arg, 4))
217 commands[-1].redirects.append(self.parse_redirect(arg, 3))
219 commands[-1].redirects.append(self.parse_redirect(arg, 2))
221 commands[-1].redirects.append(self.parse_redirect(arg, 1))
223 commands[-1].args.append(arg)
225 return Pipeline(commands, Fals
[all...]
/external/chromium/chrome/browser/renderer_host/
H A Dgtk_key_bindings_handler.cc162 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[
[all...]
/external/chromium/chrome/browser/ui/webui/options/
H A Dadvanced_options_utils_gtk.cc39 // Search $PATH to find one of the commands. Store the full path to
41 bool SearchPATH(ProxyConfigCommand* commands, size_t ncommands, size_t* index) { argument
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[inde
[all...]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
H A Dtoken.ml8 (* commands *)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
H A Dtoken.ml8 (* commands *)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dtoken.ml8 (* commands *)
/external/quake/quake/src/QW/client/
H A Dgl_mesh.c39 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, numcommand
[all...]
/external/quake/quake/src/WinQuake/
H A Dgl_mesh.cpp39 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, numcommand
[all...]
/external/webkit/Tools/Scripts/webkitpy/tool/
H A Dmulticommandtool_unittest.py90 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' t
[all...]
/external/chromium/chrome/browser/ui/cocoa/
H A Dcommand_observer_bridge.h15 // A C++ bridge class that handles listening for updates to commands and
26 CommandUpdater* commands);

Completed in 9602 milliseconds

12345678