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

12 3 4 5 6 7 8 910

  /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]:
  /libcore/luni/src/test/java/tests/api/java/lang/
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);
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyEvent.java 17 package com.android.commands.monkey;
MonkeyTouchEvent.java 17 package com.android.commands.monkey;
MonkeyTrackballEvent.java 17 package com.android.commands.monkey;
MonkeyEventQueue.java 17 package com.android.commands.monkey;
MonkeyThrottleEvent.java 17 package com.android.commands.monkey;
MonkeyWaitEvent.java 17 package com.android.commands.monkey;
  /external/chromium/chrome/browser/sessions/
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/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/webkit/Tools/Scripts/webkitpy/tool/commands/
roll.py 29 from webkitpy.tool.commands.abstractsequencedcommand import AbstractSequencedCommand
  /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...]
multicommandtool.py 129 # main() exists so that Commands can be turned into stand-alone scripts.
133 # Some commands might require a dummy tool
173 make_option("-a", "--all-commands", action="store_true", dest="show_all_commands", help="Print all available commands"),
176 self.show_all_commands = False # A hack used to pass --all-commands to _help_epilog even though it's called by the OptionParser.
179 # Only show commands which are relevant to this checkout's SCM system. Might this be confusing to some users?
181 epilog = "All %prog commands:\n"
182 relevant_commands = self._tool.commands[:]
184 epilog = "Common %prog commands:\n"
185 relevant_commands = filter(self._tool.should_show_in_main_help, self._tool.commands)
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/toolbar/
toolbar_controller.h 107 commands:(CommandUpdater*)commands
170 commands:(CommandUpdater*)commands
  /external/libvpx/examples/includes/geshi/geshi/
vim.php 14 * All keywords scraped from `:help expression-commands`.
24 * - Fill out list of zillion commands
78 '-nargs' # TODO There are zillions of commands to be added here from http://vimdoc.sourceforge.net/htmldoc/usr_toc.html
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/gtk/
WebEditorClientGtk.cpp 39 // First try to interpret the command in the UI and get the commands.
47 Vector<Editor::Command> commands; local
53 commands.append(command);
56 for (size_t i = 0; i < commands.size(); i++) {
57 if (!commands.at(i).execute())
89 // Only allow text insertion commands if the current node is editable.
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/
jsilver.sablecc 175 = commands
176 {->commands.command}
179 commands {->command}
236 commands
242 commands.command)}
245 commands
251 commands.command)}
254 commands
261 commands.command)}
264 commands
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
token.ml 8 (* commands *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
token.ml 8 (* commands *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
token.ml 8 (* commands *)
  /external/qemu/
Android.mk 2 # through the 'm' or 'mm' build commands. if not, we use the

Completed in 711 milliseconds

12 3 4 5 6 7 8 910