Searched refs:intents (Results 1 - 9 of 9) sorted by relevance

/packages/apps/VoiceDialer/src/com/android/voicedialer/
H A DRecognizerClient.java32 public void onRecognitionSuccess(final Intent[] intents); argument
H A DPhoneTypeChoiceRecognizerEngine.java53 ArrayList<Intent> intents = new ArrayList<Intent>();
56 intents.size() < RESULT_LIMIT; result++) {
86 addIntent(intents, intent);
93 if (mLogger != null) mLogger.logIntents(intents);
98 if (intents.size() == 0) {
99 if (false) Log.d(TAG, " no intents");
105 intents.toArray(new Intent[intents.size()]));
H A DCommandRecognizerEngine.java51 * it will process the results, which will pass a list of intents to
947 ArrayList<Intent> intents = new ArrayList<Intent>();
955 intents.size() < examineLimit; result++) {
979 addCallIntent(intents, uri,
1015 addCallIntent(intents, ContentUris.withAppendedId(
1043 addCallIntent(intents, ContentUris.withAppendedId(
1071 addCallIntent(intents, ContentUris.withAppendedId(
1079 addCallIntent(intents, ContentUris.withAppendedId(
1087 addCallIntent(intents, ContentUris.withAppendedId(
1095 addCallIntent(intents, ContentUri
1207 addCallIntent(ArrayList<Intent> intents, Uri uri, String literal, String phoneType, int flags) argument
[all...]
H A DVoiceDialerTester.java118 * @param intents Array of Intents corresponding to recognized sentences.
120 public void onRecognitionSuccess(Intent[] intents) { argument
122 wf.mTotal = intents.length;
125 for (int i = 0; i < intents.length; i++) {
127 intents[i].getStringExtra(RecognizerEngine.SENTENCE_EXTRA).
132 if (intents.length > 1) wf.mMessage += ", etc";
H A DRecognizerEngine.java45 * a list of intents to the {@RecogizerClient}.
232 protected static void addIntent(ArrayList<Intent> intents, Intent intent) { argument
233 for (Intent in : intents) {
242 intents.add(intent);
H A DVoiceDialerActivity.java736 * @param intents a list of Intents corresponding to the sentences.
738 public void onRecognitionSuccess(final Intent[] intents) { argument
740 intents.length);
746 // store the intents in a member variable so that we can access it
748 mAvailableChoices = intents;
757 String[] sentences = new String[intents.length];
758 for (int i = 0; i < intents.length; i++) {
759 sentences[i] = intents[i].getStringExtra(
763 if (intents.length == 0) {
764 onRecognitionFailure("zero intents");
865 onRecognitionSuccess(final Intent[] intents) argument
[all...]
H A DRecognizerLogger.java164 * @param intents
166 public void logIntents(ArrayList<Intent> intents) { argument
169 for (Intent intent : intents) {
/packages/apps/Browser/src/com/android/browser/
H A DUploadHandler.java226 private Intent createChooserIntent(Intent... intents) { argument
228 chooser.putExtra(Intent.EXTRA_INITIAL_INTENTS, intents);
/packages/apps/Mms/src/com/android/mms/transaction/
H A DPushReceiver.java52 * Receives Intent.WAP_PUSH_RECEIVED_ACTION intents and starts the
67 protected Void doInBackground(Intent... intents) { argument
68 Intent intent = intents[0];

Completed in 129 milliseconds