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

/packages/apps/VoiceDialer/src/com/android/voicedialer/
H A DCommandRecognizerEngine.java43 * This is a RecognizerEngine that processes commands to make phone calls and
52 * the {@RecognizerClient}. It will accept the following types of commands:
970 String[] commands = semantic.trim().split(" ");
975 if ("DIAL".equalsIgnoreCase(commands[0])) {
976 Uri uri = Uri.fromParts("tel", commands[1], null);
977 String num = formatNumber(commands[1]);
985 // commands should become ["CALL", id, id, ..] reflecting addNameEntriesToGrammar().
986 else if ("CALL".equalsIgnoreCase(commands[0])
987 && commands.length >= PHONE_ID_COUNT + 1) {
989 long contactId = Long.parseLong(commands[
[all...]
/packages/apps/Email/src/com/android/email/mail/store/
H A DImapConnection.java257 * @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, argument
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) argument
341 sendComplexCommand(commands, sensitive);
H A DImapFolder.java438 List<String> commands = new ArrayList<String>();
449 commands.add(ImapConstants.UID_SEARCH + " CHARSET " + charset + " OR FROM " + octetLength);
450 commands.add(filter + " (OR TO " + octetLength);
451 commands.add(filter + " (OR CC " + octetLength);
452 commands.add(filter + " (OR SUBJECT " + octetLength);
453 commands.add(filter + " BODY " + octetLength);
454 commands.add(filter + ")))");
455 return getMessagesInternal(complexSearchForUids(commands), listener);
458 /* package */ String[] complexSearchForUids(List<String> commands) throws MessagingException { argument
462 return getSearchUids(mConnection.executeComplexCommand(commands, fals
[all...]
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
H A DCalendarProvider2Test.java167 * commands that can create events, delete or update events, and then
765 * This sequence of commands inserts and deletes some events.
783 * This sequence of commands inserts and deletes some all-day events.
801 * This sequence of commands inserts and deletes some repeating events.
819 * This sequence of commands creates a recurring event with a recurrence
835 * This sequence of commands deletes (cancels) one instance of a recurrence.
852 * This sequence of commands creates a recurring event with a recurrence
867 * This sequence of commands creates a recurring event with a recurrence
2422 * Run commands, wiping instance table at each step.
2431 * Run commands normall
[all...]
/packages/apps/Exchange/exchange2/src/com/android/exchange/
H A DEasSyncService.java452 Header commands = resp.getHeader("MS-ASProtocolCommands");
456 if (commands == null || versions == null) {
457 userLog("OPTIONS response without commands or versions");
1305 // Split the mail sending commands
1366 * use in future EAS commands and write this key to the account.

Completed in 340 milliseconds