| /external/webkit/Tools/Scripts/webkitpy/tool/bot/ |
| irc_command.py | 103 return "%s: Available commands: %s" % (nick, ", ".join(commands.keys())) 139 commands = { variable
|
| sheriffircbot.py | 70 command = irc_command.commands.get(tokenized_request[0])
|
| /external/webkit/Tools/Scripts/webkitpy/tool/commands/ |
| earlywarningsystem_unittest.py | 34 from webkitpy.tool.commands.earlywarningsystem import * 35 from webkitpy.tool.commands.queuestest import QueuesTest
|
| upload_unittest.py | 30 from webkitpy.tool.commands.commandtest import CommandsTest 31 from webkitpy.tool.commands.upload import *
|
| /development/cmds/monkey/src/com/android/commands/monkey/ |
| MonkeySourceRandomScript.java | 17 package com.android.commands.monkey;
|
| MonkeySourceNetworkViews.java | 17 package com.android.commands.monkey; 19 import static com.android.commands.monkey.MonkeySourceNetwork.EARG; 33 import com.android.commands.monkey.MonkeySourceNetwork.CommandQueue; 34 import com.android.commands.monkey.MonkeySourceNetwork.MonkeyCommand; 35 import com.android.commands.monkey.MonkeySourceNetwork.MonkeyCommandReturn; 47 * Script commands over the network.
|
| MonkeyKeyEvent.java | 17 package com.android.commands.monkey;
|
| MonkeyNetworkMonitor.java | 17 package com.android.commands.monkey;
|
| MonkeyPowerEvent.java | 17 package com.android.commands.monkey;
|
| /external/chromium/chrome/browser/sessions/ |
| base_session_service.h | 68 // The commands. The backend fills this in for us. 69 std::vector<SessionCommand*> commands; member in class:BaseSessionService::InternalGetCommandsRequest 89 // Returns the set of commands that needed to be scheduled. The commands 91 // on the backend at which point the backend owns the commands. 100 // Returns the number of commands sent down since the last reset. 111 // Saves pending commands to the backend. This is invoked from the timer 180 // Commands we need to send over to the backend. 184 // over the commands. 187 // The number of commands sent to the backend before doing a reset [all...] |
| /external/chromium/net/base/ |
| cookie_monster_store_test.h | 36 // received commands and saves them to a list. 50 const CommandList& commands() const { function in class:net::MockPersistentCookieStore
|
| /external/clang/test/Sema/ |
| init.c | 44 struct cdiff_cmd commands[] = { variable in typeref:struct:cdiff_cmd
|
| /external/webkit/Source/WebKit2/UIProcess/API/mac/ |
| WKViewInternal.h | 56 - (BOOL)_interpretKeyEvent:(NSEvent *)theEvent savingCommandsTo:(Vector<WebCore::KeypressCommand>&)commands;
|
| /frameworks/base/cmds/svc/src/com/android/commands/svc/ |
| Svc.java | 17 package com.android.commands.svc; 49 final int N = COMMANDS.length; 51 Command c = COMMANDS[i]; 75 System.err.println("Available commands:"); 76 final int N = COMMANDS.length; 79 Command c = COMMANDS[i]; 87 Command c = COMMANDS[i]; 93 public static final Command[] COMMANDS = new Command[] {
|
| /frameworks/opt/telephony/src/java/com/android/internal/telephony/test/ |
| ModelInterpreter.java | 527 String[] commands; local 529 commands = splitCommands(line); 531 for (int i = 0; i < commands.length ; i++) { 532 String command = commands[i]; 590 // r"|([A-RT-Z]\d?)" # Normal commands eg ATA or I0 591 // r"|(&[A-Z]\d*)" # & commands eg &C
|
| /system/core/init/ |
| init.h | 28 /* list of commands in an action */ 47 struct listnode commands; member in struct:action
|
| /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
| org.eclipse.debug.core_3.6.0.v20100519.jar | |
| /external/valgrind/main/coregrind/ |
| vgdb.c | 59 2. standalone to send monitor commands to a running valgrind-ified process 74 Once all the commands are sent and their replies received, vgdb will exit. 2448 char *commands[argc]; \/\/ we will never have more commands than args. local [all...] |
| /bionic/libc/tools/ |
| gensyscalls.py | 8 import sys, os.path, glob, re, commands, filecmp, shutil namespace 445 commands.getoutput("git add " + " ".join(adds)) 447 commands.getoutput("git rm " + " ".join(deletes)) 451 commands.getoutput("git add " + 454 commands.getoutput("git add %s%s" % (bionic_root,"SYSCALLS.TXT"))
|
| /ndk/sources/host-tools/make-3.81/ |
| commands.c | 24 #include "commands.h" 123 /* This file got its commands from .DEFAULT. 271 chop_commands (struct commands *cmds) 277 /* If we don't have any commands, 283 /* Chop CMDS->commands up into lines in CMDS->command_lines. 290 p = cmds->commands; 366 /* Execute the commands to remake FILE. If they are currently executing, 376 the commands are nothing but whitespace. */ 378 for (p = file->cmds->commands; *p != '\0'; ++p) 383 /* If there are no commands, assume everything worked. * [all...] |
| /packages/apps/Email/src/com/android/email/mail/store/ |
| ImapConnection.java | 257 * @param commands An array of Strings comprising the command to be sent to the server 260 String sendComplexCommand(List<String> commands, boolean sensitive) throws MessagingException, 264 int len = commands.size(); 266 String commandToSend = commands.get(i); 333 * @param commands a list of strings that comprise the command to be sent to the server 339 List<ImapResponse> executeComplexCommand(List<String> commands, boolean sensitive) 341 sendComplexCommand(commands, sensitive);
|
| ImapFolder.java | 442 List<String> commands = new ArrayList<String>(); local 453 commands.add(ImapConstants.UID_SEARCH + " CHARSET " + charset + " OR FROM " + octetLength); 454 commands.add(filter + " (OR TO " + octetLength); 455 commands.add(filter + " (OR CC " + octetLength); 456 commands.add(filter + " (OR SUBJECT " + octetLength); 457 commands.add(filter + " BODY " + octetLength); 458 commands.add(filter + ")))"); 459 return getMessagesInternal(complexSearchForUids(commands), listener); 462 /* package */ String[] complexSearchForUids(List<String> commands) throws MessagingException { 466 return getSearchUids(mConnection.executeComplexCommand(commands, false)) [all...] |
| /external/linux-tools-perf/ |
| perf.c | 6 * This is the main hub from which the sub-commands (perf stat, 104 * commands can be written with "--" prepended 312 static struct cmd_struct commands[] = { local 362 for (i = 0; i < ARRAY_SIZE(commands); i++) { 363 struct cmd_struct *p = commands+i; 485 * We use PATH to find perf commands, but we prepend some higher
|
| /external/webkit/Tools/wx/build/ |
| settings.py | 26 import commands namespace 49 wx_root = commands.getoutput('wx-config --prefix') 312 min_version = commands.getoutput('sw_vers -productVersion')[:4]
|
| /ndk/sources/host-tools/sed-4.2.1/testsuite/ |
| bsd.sh | 200 echo Testing a c d and i commands 310 echo Pattern space commands 372 echo Testing substitution commands
|