/hardware/ti/wpan/tools/FM/service/src/jni/ |
JFmTxNative.h | 108 #define FM_TX_CMD_ENABLE ((FmTxCmdType)0) /* Enable command */ 109 #define FM_TX_CMD_DISABLE ((FmTxCmdType)1) /* Disable command */ 110 #define FM_TX_CMD_SET_BAND ((FmTxCmdType)2) /* Set Band command */ 111 #define FM_TX_CMD_GET_BAND ((FmTxCmdType)3) /* Get Band command */ 112 #define FM_TX_CMD_SET_MONO_STEREO_MODE ((FmTxCmdType)4) /* Set Mono/Stereo command */ 113 #define FM_TX_CMD_GET_MONO_STEREO_MODE ((FmTxCmdType)5) /* Get Mono/Stereo command */ 114 #define FM_TX_CMD_SET_MUTE_MODE ((FmTxCmdType)6) /* Set Mute mode command */ 115 #define FM_TX_CMD_GET_MUTE_MODE ((FmTxCmdType)7) /* Get Mute mode command */ 116 #define FM_TX_CMD_SET_RF_DEPENDENT_MUTE_MODE ((FmTxCmdType)8) /* Set RF-Dependent Mute Mode command */ 117 #define FM_TX_CMD_GET_RF_DEPENDENT_MUTE_MODE ((FmTxCmdType)9) /* Get RF-Dependent Mute Mode command */ [all...] |
/development/cmds/monkey/src/com/android/commands/monkey/ |
MonkeySourceNetwork.java | 57 * command was sucessful or not. 97 * Translate the command line into a sequence of MonkeyEvents. 99 * @param command the command line. 100 * @param queue the command queue. 103 MonkeyCommandReturn translateCommand(List<String> command, CommandQueue queue); 107 * Command to simulate closing and opening the keyboard. 112 public MonkeyCommandReturn translateCommand(List<String> command, 114 if (command.size() > 1) { 115 String direction = command.get(1) 658 MonkeyCommand command = COMMAND_MAP.get(parts.get(0)); local 716 String command = input.readLine(); local [all...] |
/external/chromium/chrome/browser/ |
command_updater_unittest.cc | 37 // Unsupported command 41 // the command is not supported. 44 // Supported, enabled command 50 // Supported, disabled command 63 // Create an observer for the command 2 and add it to the controller, then 64 // update the command. 72 // Remove the observer and update the command. 83 // single remove command, then set the command to false. Ensure that the 99 // Remove one observer and update the command. Check the states, whic [all...] |
/external/webkit/Tools/Scripts/webkitpy/tool/ |
multicommandtool_unittest.py | 35 from webkitpy.tool.multicommandtool import MultiCommandTool, Command, TryAgain 38 class TrivialCommand(Command): 42 Command.__init__(self, "help text", **kwargs) 53 class LikesToRetry(Command): 58 Command.__init__(self, "help text", **kwargs) 76 self.assertEqual(Command._parse_required_arguments("ARG1 ARG2"), ["ARG1", "ARG2"]) 77 self.assertEqual(Command._parse_required_arguments("[ARG1] [ARG2]"), []) 78 self.assertEqual(Command._parse_required_arguments("[ARG1] ARG2"), ["ARG2"]) 80 self.assertRaises(Exception, Command._parse_required_arguments, "[ARG1 ARG2]") 96 def should_execute_command(self, command) [all...] |
/external/clang/test/Sema/ |
warn-documentation.cpp | 85 // expected-warning@+1 {{empty paragraph passed to '\brief' command}} 89 // expected-warning@+1 {{empty paragraph passed to '\brief' command}} 93 // expected-warning@+1 {{empty paragraph passed to '\brief' command}} 98 // expected-warning@+1 {{empty paragraph passed to '\brief' command}} 105 // expected-warning@+1 {{empty paragraph passed to '\brief' command}} 114 // expected-warning@+5 {{duplicated command '\brief'}} expected-note@+1 {{previous command '\brief' here}} 122 // expected-warning@+5 {{duplicated command '\short'}} expected-note@+1 {{previous command '\short' here}} 130 // expected-warning@+5 {{duplicated command '\brief'}} expected-note@+1 {{previous command '\short' (an alias of '\brief') here} [all...] |
warn-documentation.m | 5 // expected-warning@+1 {{empty paragraph passed to '\brief' command}} 8 // expected-warning@+2 {{empty paragraph passed to '\brief' command}} 22 // expected-warning@+1 {{empty paragraph passed to '\brief' command}} 26 // expected-warning@+1 {{empty paragraph passed to '\brief' command}} 31 // expected-warning@+1 {{empty paragraph passed to '\brief' command}} 36 // expected-warning@+1 {{empty paragraph passed to '\brief' command}} 50 // expected-warning@+1 {{empty paragraph passed to '\brief' command}} 55 // expected-warning@+1 {{empty paragraph passed to '\brief' command}} 58 // expected-warning@+1 {{empty paragraph passed to '\brief' command}} 63 // expected-warning@+1 {{empty paragraph passed to '\brief' command}} [all...] |
/external/chromium/chrome/browser/sync/engine/ |
cleanup_disabled_types_command_unittest.cc | 46 CleanupDisabledTypesCommand command; local 50 command.ExecuteImpl(session()); 54 CleanupDisabledTypesCommand command; local 60 command.ExecuteImpl(session()); 63 command.ExecuteImpl(session()); 67 CleanupDisabledTypesCommand command; local 82 command.ExecuteImpl(session());
|
/external/clang/tools/diag-build/ |
diag-build.sh | 6 echo ' diag-build.sh [-v] <other build command>' 9 echo 'If using an alternate build command, you must ensure that' 87 command=$( 89 # Remove "if" early on so we can find the right command line. 98 if [[ -z "$command" ]]; then 110 command=${command%%&&*} 111 command=${command%%||*} 112 command=${command%%;* [all...] |
/development/testrunner/ |
run_command.py | 32 """Sets behavior of RunCommand to throw AbortError if command process returns 39 """Spawn and retry a subprocess to run the given shell command. 42 cmd: shell command to run 43 timeout_time: time in seconds to wait for command to run before aborting. 44 retry_count: number of times to retry command 45 return_output: if True return output of command as string. Otherwise, 46 direct output of command to stdout. 49 output of command 66 """Spawns a subprocess to run the given shell command. 69 cmd: shell command to ru [all...] |
/external/chromium/chrome/browser/ui/cocoa/applescript/ |
scripting.sdef | 19 <responds-to command="quit"> 68 <responds-to command="close"> 72 <command name="save" code="coresave" description="Save an object."> 80 </command> 86 <command name="open" code="aevtodoc" description="Open a document."> 90 </command> 91 <command name="close" code="coreclos" description="Close a window."> 94 </command> 95 <command name="quit" code="aevtquit" description="Quit the application."> 97 </command> [all...] |
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/ |
PacketSessionExecCommand.java | 22 public String command; field in class:PacketSessionExecCommand 24 public PacketSessionExecCommand(int recipientChannelID, boolean wantReply, String command) 28 this.command = command; 45 tw.writeString(command, charsetName);
|
/external/linux-tools-perf/Documentation/ |
perf-help.txt | 10 'perf help' [-a|--all] [COMMAND] 15 With no options and no COMMAND given, the synopsis of the 'perf' 16 command and a list of the most commonly used perf commands are printed 22 If a perf command is named, a manual page for that command is brought
|
/external/llvm/tools/gold/ |
CMakeLists.txt | 25 COMMAND echo "{" > exportsfile 26 COMMAND grep -q "\\<" ${srcexp} && echo " global:" >> exportsfile || : 27 COMMAND sed -e "s/$/;/" -e "s/^/ /" < ${srcexp} >> exportsfile 28 COMMAND echo " local: *;" >> exportsfile 29 COMMAND echo "};" >> exportsfile
|
/external/webkit/LayoutTests/http/tests/appcache/resources/ |
fail-on-update-2.php | 19 $command = $_GET['command']; variable 26 if ($command == "reset") { 28 } else if ($command == "delete") { 35 print("fail-on-update.php?command=\n");
|
/external/wpa_supplicant_8/wpa_supplicant/doc/docbook/ |
wpa_passphrase.sgml | 14 <command>wpa_passphrase</command> 23 <para><command>wpa_passphrase</command> pre-computes PSK entries for 42 <para>The passphrase to use. If not included on the command line,
|
/hardware/samsung_slsi/exynos5/libsecurepath/ |
tci.h | 35 #define RET_ERR_UNKNOWN_CMD 1 /**< Unknown command */ 41 * TCI command header. 44 tciCommandId_t commandId; /**< Command ID */ 51 tciResponseId_t responseId; /**< Response ID (must be command ID | RSP_ID_MASK )*/ 52 tciReturnCode_t returnCode; /**< Return code of command */
|
/external/chromium/base/ |
command_line.h | 5 // This class works with command lines: building and parsing. 11 // There is a singleton read-only CommandLine that represents the command line 31 // The native command line string type. 45 // Construct a new command line with |program| as argv[0]. 57 // don't trust the CRT's parsing of the command line, but it still must be 58 // called to set up the command line. 68 // command line. Note: returned value is mutable, but not thread safe; 82 // Returns the represented command line string. 87 // Returns the original command line string as a vector of strings. 91 // Returns the program part of the command line string (the first item) [all...] |
debug_message.cc | 7 // Display the command line. This program is designed to be called from 9 // complete control of our command line, we assume that it did *not* 11 // show the command line directly as the message.
|
/frameworks/base/core/java/com/android/internal/os/ |
WrapperInit.java | 56 * @param args The command-line arguments. 91 * Executes a runtime application with a wrapper command. 94 * @param invokeWith The wrapper command. 102 StringBuilder command = new StringBuilder(invokeWith); local 103 command.append(" /system/bin/app_process /system/bin --application"); 105 command.append(" '--nice-name=").append(niceName).append("'"); 107 command.append(" com.android.internal.os.WrapperInit "); 108 command.append(pipeFd != null ? pipeFd.getInt$() : 0); 109 command.append(' '); 110 command.append(targetSdkVersion) 126 StringBuilder command = new StringBuilder(invokeWith); local [all...] |
/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();
|
/development/samples/JetBoy/ |
JETBOY_content_README.txt | 5 1. Open a command prompt and go to the directory where the JetCreator tool is located.
9 3. Select the IMPORT command and import JETBOY.zip.
11 4. After importing the first time, you can use the OPEN command to open the .jtc file in the folder you selected as the target for import.
|
/external/chromium/chrome/browser/ui/cocoa/tabs/ |
tab_controller_target.h | 19 - (void)commandDispatch:(TabStripModel::ContextMenuCommand)command 21 // Returns YES if the specificed command should be enabled for the given 23 - (BOOL)isCommandEnabled:(TabStripModel::ContextMenuCommand)command
|
/external/clang/bindings/python/tests/cindex/INPUTS/ |
compile_commands.json | 4 "command": "clang++ -o project.o -c /home/john.doe/MyProject/project.cpp", 9 "command": "clang++ -o project2.o -c /home/john.doe/MyProject/project2.cpp", 14 "command": "clang++ -DFEATURE=1 -o project2-feature.o -c /home/john.doe/MyProject/project2.cpp",
|
/external/grub/docs/ |
grub-terminfo.8 | 4 grub-terminfo \- Generate a terminfo command from a terminfo name 9 Generate a terminfo command from a terminfo name. 25 programs are properly installed at your site, the command
|
/external/llvm/test/Transforms/LoopUnswitch/ |
2011-06-02-CritSwitch.ll | 4 define i32 @test(i32 %command) { 12 switch i32 %command, label %sw.bb [ 21 switch i32 %command, label %tailrecurse [
|