| /frameworks/base/services/java/com/android/server/ |
| NotificationPlayer.java | 48 private static final class Command { 62 private LinkedList<Command> mCmdQueue = new LinkedList(); 73 public Command mCmd; 74 public CreationAndCompletionThread(Command cmd) { 118 private void startSound(Command cmd) { 160 Command cmd = null; 189 Log.w(mTag, "STOP command without a player"); 265 Command cmd = new Command(); 287 Command cmd = new Command() [all...] |
| /external/chromium/net/ftp/ |
| ftp_network_transaction.h | 50 enum Command { 66 // Major categories of remote system types, as returned by SYST command. 128 // issued command. Returns error code. 131 int SendFtpCommand(const std::string& command, Command cmd); 133 // Returns request path suitable to be included in an FTP command. If the path 187 Command command_sent_; 210 // Buffer holding the command line to be written to the control socket. 221 // Data type to be used for the TYPE command. 234 // Current directory on the remote server, as returned by last PWD command, [all...] |
| /external/llvm/utils/TableGen/ |
| AsmWriterEmitter.cpp | 122 std::string Command; 126 Command = " " + Inst->Operands[0].getCode() + "\n"; 128 // Check to see if we already have 'Command' in UniqueOperandCommands. 132 if (UniqueOperandCommands[idx] == Command) { 141 UniqueOperandCommands.push_back(Command); 144 // This command matches one operand so far. 150 // that uses it. If the next command of all instructions in the set are 151 // identical, fold it into the command. 162 // into this command. 168 // Otherwise, scan to see if all of the other instructions in this command [all...] |
| /frameworks/base/tools/aapt/ |
| Bundle.h | 4 // State bundle. Used to pass around stuff like command-line args. 20 typedef enum Command { 29 } Command; 32 * Bundle of goodies, including everything specified on the command line. 58 * Set the command value. Returns "false" if it was previously set. 60 Command getCommand(void) const { return mCmd; } 61 void setCommand(Command cmd) { mCmd = cmd; } 64 * Command modifiers. Not all modifiers are appropriate for all 197 * the command line. If neither, it's not available since 221 Command mCmd [all...] |
| /system/media/mca/filterfw/java/android/filterfw/io/ |
| TextGraphReader.java | 41 private ArrayList<Command> mCommands = new ArrayList<Command>(); 48 private interface Command { 52 private class ImportPackageCommand implements Command { 69 private class AddLibraryCommand implements Command { 82 private class AllocateFilterCommand implements Command { 105 private class InitFilterCommand implements Command { 124 private class ConnectCommand implements Command { 212 String curCommand = scanner.eat(commandPattern, "<command>"); 228 throw new GraphIOException("Unknown command '" + curCommand + "'!") [all...] |
| /external/webkit/Source/WebCore/editing/ |
| EditorCommand.cpp | 276 // Execute command functions 361 // Despite its name, this command should delete the newline at the end of 369 // Despite its name, this command should delete the newline at the end of 442 RefPtr<FormatBlockCommand> command = FormatBlockCommand::create(frame->document(), qualifiedTagName); local 443 applyCommand(command); 444 return command->didApply(); 1397 EditorInternalCommand command; member in struct:WebCore::CommandEntry 1604 Editor::Command Editor::command(const String& commandName) function in class:WebCore::Editor 1609 Editor::Command Editor::command(const String& commandName, EditorCommandSource source) function in class:WebCore::Editor [all...] |
| /frameworks/base/services/input/ |
| InputDispatcher.h | 588 // A command entry captures state and behavior for an action to be performed in the 595 // the dispatcher lock at will. Initially when the command starts running, the 596 // dispatcher lock is held. However, if the command needs to call into the policy to 605 typedef void (InputDispatcher::*Command)(CommandEntry* commandEntry); 609 CommandEntry(Command command); 612 Command command; member in struct:android::InputDispatcher::CommandEntry 614 // parameters for the command (usage varies by command) [all...] |
| /packages/apps/Email/src/com/android/email/ |
| MessagingController.java | 75 * prioritize these commands. Each method that will submit a command requires a 78 * command is to be executed, if the listener that was provided with the command 79 * is no longer registered the command is skipped. The design idea for the above 129 private final BlockingQueue<Command> mCommands = new LinkedBlockingQueue<Command>(); 183 Command command; local 185 command = mCommands.take(); 189 if (command.listener == null || isActiveListener(command.listener)) 200 Command command = new Command(); local [all...] |
| /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/ |
| CalendarProvider2Test.java | 62 * You can run the tests with the following command line: 166 * A generic command interface. This is used to support a sequence of 170 private interface Command { 180 private class Insert implements Command { 196 private class Delete implements Command { 224 private class Update implements Command { 258 * This command queries the number of events and compares it to the given 261 private class QueryNumEvents implements Command { 277 * This command dumps the list of events to the log for debugging. 279 private class DumpEvents implements Command { [all...] |
| /prebuilt/common/eclipse/ |
| org.eclipse.core.commands_3.4.0.I20080509-2000.jar | |
| /external/emma/lib/ |
| emma.jar | |