Home
last modified time | relevance | path

Searched refs:commands (Results 1 – 10 of 10) sorted by relevance

/packages/apps/VoiceDialer/src/com/android/voicedialer/
DCommandRecognizerEngine.java970 String[] commands = semantic.trim().split(" "); in onRecognitionSuccess() local
975 if ("DIAL".equalsIgnoreCase(commands[0])) { in onRecognitionSuccess()
976 Uri uri = Uri.fromParts("tel", commands[1], null); in onRecognitionSuccess()
977 String num = formatNumber(commands[1]); in onRecognitionSuccess()
986 else if ("CALL".equalsIgnoreCase(commands[0]) in onRecognitionSuccess()
987 && commands.length >= PHONE_ID_COUNT + 1) { in onRecognitionSuccess()
989 long contactId = Long.parseLong(commands[1]); // people table in onRecognitionSuccess()
990 long primaryId = Long.parseLong(commands[2]); // phones table in onRecognitionSuccess()
991 long homeId = Long.parseLong(commands[3]); // phones table in onRecognitionSuccess()
992 long mobileId = Long.parseLong(commands[4]); // phones table in onRecognitionSuccess()
[all …]
/packages/apps/Email/src/com/android/email/mail/store/
DImapConnection.java260 String sendComplexCommand(List<String> commands, boolean sensitive) throws MessagingException, in sendComplexCommand() argument
264 int len = commands.size(); in sendComplexCommand()
266 String commandToSend = commands.get(i); in sendComplexCommand()
339 List<ImapResponse> executeComplexCommand(List<String> commands, boolean sensitive) in executeComplexCommand() argument
341 sendComplexCommand(commands, sensitive); in executeComplexCommand()
DImapFolder.java438 List<String> commands = new ArrayList<String>(); in getMessages() local
449 commands.add(ImapConstants.UID_SEARCH + " CHARSET " + charset + " OR FROM " + octetLength); in getMessages()
450 commands.add(filter + " (OR TO " + octetLength); in getMessages()
451 commands.add(filter + " (OR CC " + octetLength); in getMessages()
452 commands.add(filter + " (OR SUBJECT " + octetLength); in getMessages()
453 commands.add(filter + " BODY " + octetLength); in getMessages()
454 commands.add(filter + ")))"); in getMessages()
455 return getMessagesInternal(complexSearchForUids(commands), listener); in getMessages()
458 /* package */ String[] complexSearchForUids(List<String> commands) throws MessagingException { in complexSearchForUids() argument
462 return getSearchUids(mConnection.executeComplexCommand(commands, false)); in complexSearchForUids()
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
DCalendarProvider2Test.java2326 Command[] commands; in commandSequences() local
2329 commands = mNormalInsertDelete; in commandSequences()
2330 for (Command command : commands) { in commandSequences()
2337 commands = mAlldayInsertDelete; in commandSequences()
2338 for (Command command : commands) { in commandSequences()
2345 commands = mRecurringInsertDelete; in commandSequences()
2346 for (Command command : commands) { in commandSequences()
2353 commands = mExceptionWithTruncatedRecurrence; in commandSequences()
2354 for (Command command : commands) { in commandSequences()
2361 commands = mExceptionWithMovedRecurrence; in commandSequences()
[all …]
/packages/inputmethods/LatinIME/tools/maketext/res/com/android/inputmethod/keyboard/internal/
DKeyboardTextsSet.tmpl37 * To update this file, please run the following commands.
/packages/apps/LegacyCamera/jni/feature_stab/doc/
Ddbreg_API_doxyfile186 # as commands in the documentation. An alias has the form "name=value".
447 # commands in the documentation.
453 # commands in the documentation.
459 # commands in the documentation.
465 # \deprecated commands in the documentation.
551 # don't exist or using markup commands wrongly.
685 # commands irrespective of the value of the RECURSIVE tag.
/packages/apps/Camera/jni/feature_mos/doc/
Dfeature_mos_API_doxyfile186 # as commands in the documentation. An alias has the form "name=value".
447 # commands in the documentation.
453 # commands in the documentation.
459 # commands in the documentation.
465 # \deprecated commands in the documentation.
551 # don't exist or using markup commands wrongly.
685 # commands irrespective of the value of the RECURSIVE tag.
/packages/apps/LegacyCamera/jni/feature_mos/doc/
Dfeature_mos_API_doxyfile186 # as commands in the documentation. An alias has the form "name=value".
447 # commands in the documentation.
453 # commands in the documentation.
459 # commands in the documentation.
465 # \deprecated commands in the documentation.
551 # don't exist or using markup commands wrongly.
685 # commands irrespective of the value of the RECURSIVE tag.
/packages/apps/Camera/jni/feature_stab/doc/
Ddbreg_API_doxyfile186 # as commands in the documentation. An alias has the form "name=value".
447 # commands in the documentation.
453 # commands in the documentation.
459 # commands in the documentation.
465 # \deprecated commands in the documentation.
551 # don't exist or using markup commands wrongly.
685 # commands irrespective of the value of the RECURSIVE tag.
/packages/apps/Exchange/exchange2/src/com/android/exchange/
DEasSyncService.java452 Header commands = resp.getHeader("MS-ASProtocolCommands"); in validateAccount() local
456 if (commands == null || versions == null) { in validateAccount()