Searched refs:commands (Results 1 – 10 of 10) sorted by relevance
970 String[] commands = semantic.trim().split(" "); in onRecognitionSuccess() local975 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 …]
260 String sendComplexCommand(List<String> commands, boolean sensitive) throws MessagingException, in sendComplexCommand() argument264 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() argument341 sendComplexCommand(commands, sensitive); in executeComplexCommand()
438 List<String> commands = new ArrayList<String>(); in getMessages() local449 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() argument462 return getSearchUids(mConnection.executeComplexCommand(commands, false)); in complexSearchForUids()
2326 Command[] commands; in commandSequences() local2329 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 …]
37 * To update this file, please run the following commands.
186 # 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.
452 Header commands = resp.getHeader("MS-ASProtocolCommands"); in validateAccount() local456 if (commands == null || versions == null) { in validateAccount()