Home
last modified time | relevance | path

Searched refs:intents (Results 1 – 4 of 4) sorted by relevance

/packages/apps/VoiceDialer/src/com/android/voicedialer/
DRecognizerEngine.java1018 ArrayList<Intent> intents = new ArrayList<Intent>(); in onRecognitionSuccess() local
1022 intents.size() < RESULT_LIMIT; result++) { in onRecognitionSuccess()
1040 addCallIntent(intents, uri, in onRecognitionSuccess()
1071 addCallIntent(intents, ContentUris.withAppendedId( in onRecognitionSuccess()
1088 addCallIntent(intents, ContentUris.withAppendedId( in onRecognitionSuccess()
1115 addCallIntent(intents, ContentUris.withAppendedId( in onRecognitionSuccess()
1123 addCallIntent(intents, ContentUris.withAppendedId( in onRecognitionSuccess()
1131 addCallIntent(intents, ContentUris.withAppendedId( in onRecognitionSuccess()
1139 addCallIntent(intents, ContentUris.withAppendedId( in onRecognitionSuccess()
1151 addCallIntent(intents, ContentUris.withAppendedId( in onRecognitionSuccess()
[all …]
DVoiceDialerActivity.java390 public void onRecognitionSuccess(final Intent[] intents) { in onRecognitionSuccess() argument
391 if (Config.LOGD) Log.d(TAG, "onRecognitionSuccess " + intents.length); in onRecognitionSuccess()
416 startActivityHelp(intents[which]); in onRecognitionSuccess()
439 if (intents.length == 1 && which == -1) which = 0; in onRecognitionSuccess()
440 startActivityHelp(intents[which]); in onRecognitionSuccess()
458 String[] sentences = new String[intents.length]; in onRecognitionSuccess()
459 for (int i = 0; i < intents.length; i++) { in onRecognitionSuccess()
460 sentences[i] = intents[i].getStringExtra( in onRecognitionSuccess()
464 final AlertDialog alertDialog = intents.length > 1 ? in onRecognitionSuccess()
482 mVoiceDialerTester.onRecognitionSuccess(intents); in onRecognitionSuccess()
[all …]
DRecognizerLogger.java167 public void logIntents(ArrayList<Intent> intents) { in logIntents() argument
170 for (Intent intent : intents) { in logIntents()
/packages/apps/Mms/src/com/android/mms/transaction/
DPushReceiver.java68 protected Void doInBackground(Intent... intents) { in doInBackground() argument
69 Intent intent = intents[0]; in doInBackground()