HomeSort by relevance Sort by last modified time
    Searched refs:VoiceContact (Results 1 - 3 of 3) sorted by null

  /packages/apps/VoiceDialer/src/com/android/voicedialer/
VoiceContact.java 37 public class VoiceContact {
38 private static final String TAG = "VoiceContact";
68 private VoiceContact(String name, long contactId, long primaryId,
108 * @return List of {@link VoiceContact} from
111 public static List<VoiceContact> getVoiceContacts(Activity activity) {
112 if (false) Log.d(TAG, "VoiceContact.getVoiceContacts");
114 List<VoiceContact> contacts = new ArrayList<VoiceContact>();
142 // pieces of next VoiceContact
173 // encountered a new name, so generate current VoiceContact
    [all...]
CommandRecognizerEngine.java 124 List<VoiceContact> contacts = mContactsFile != null ?
125 VoiceContact.getVoiceContactsFromFile(mContactsFile) :
126 VoiceContact.getVoiceContacts(mActivity);
192 private void addNameEntriesToGrammar(List<VoiceContact> contacts)
199 for (VoiceContact contact : contacts) {
    [all...]
RecognizerLogger.java 151 public void logContacts(List<VoiceContact> contacts) {
153 for (VoiceContact vc : contacts) logLine(vc.toString());

Completed in 1908 milliseconds