HomeSort by relevance Sort by last modified time
    Searched defs:TRANSCRIPTION_STATE (Results 1 - 9 of 9) sorted by null

  /packages/apps/Dialer/java/com/android/dialer/compat/android/provider/
VoicemailCompat.java 34 public static final String TRANSCRIPTION_STATE = "transcription_state";
37 * Value of {@link #TRANSCRIPTION_STATE} when the voicemail transcription has not yet been
43 * Value of {@link #TRANSCRIPTION_STATE} when the voicemail transcription has begun but is not yet
49 * Value of {@link #TRANSCRIPTION_STATE} when the voicemail transcription has been attempted and
55 * Value of {@link #TRANSCRIPTION_STATE} when the voicemail transcription has completed and the
61 * Value of {@link #TRANSCRIPTION_STATE} when the voicemail transcription has been attempted and
69 * Value of {@link #TRANSCRIPTION_STATE} when the voicemail transcription has been attempted and
77 * Value of {@link #TRANSCRIPTION_STATE} when the voicemail transcription has completed and the
  /packages/apps/Dialer/java/com/android/dialer/voicemail/listui/
VoicemailCursorLoader.java 48 AnnotatedCallLog.TRANSCRIPTION_STATE,
65 private static final int TRANSCRIPTION_STATE = 11;
114 .setTranscriptionState(cursor.getInt(TRANSCRIPTION_STATE))
  /packages/apps/Dialer/java/com/android/voicemail/impl/transcribe/
TranscriptionDbHelper.java 44 VoicemailCompat.TRANSCRIPTION_STATE // 2
49 static final int TRANSCRIPTION_STATE = 2;
76 int transcriptionState = cursor.getInt(TRANSCRIPTION_STATE);
90 Voicemails.TRANSCRIPTION + " is NULL AND " + VoicemailCompat.TRANSCRIPTION_STATE + "=?";
109 String whereClause = VoicemailCompat.TRANSCRIPTION_STATE + "=?";
130 values.put(VoicemailCompat.TRANSCRIPTION_STATE, transcriptionState);
142 values.put(VoicemailCompat.TRANSCRIPTION_STATE, transcriptionState);
  /packages/apps/Dialer/java/com/android/dialer/calllog/database/contract/
AnnotatedCallLogContract.java 205 * See {@link VoicemailCompat.TRANSCRIPTION_STATE}
211 public static final String TRANSCRIPTION_STATE = "transcription_state";
  /packages/apps/Dialer/java/com/android/dialer/phonenumbercache/
CallLogQuery.java 64 public static final int TRANSCRIPTION_STATE = 26;
107 private static final String TRANSCRIPTION_STATE_COLUMN = "transcription_state";
  /packages/apps/Dialer/java/com/android/dialer/app/calllog/
CallLogNotificationsQueryHelper.java 319 list.add(VoicemailCompat.TRANSCRIPTION_STATE);
  /frameworks/base/core/java/android/provider/
VoicemailContract.java 263 public static final String TRANSCRIPTION_STATE = "transcription_state";
265 * Value of {@link #TRANSCRIPTION_STATE} when the voicemail transcription has not yet
271 * Value of {@link #TRANSCRIPTION_STATE} when the voicemail transcription has begun
277 * Value of {@link #TRANSCRIPTION_STATE} when the voicemail transcription has
283 * Value of {@link #TRANSCRIPTION_STATE} when the voicemail transcription has
CallLog.java 349 public static final String TRANSCRIPTION_STATE = "transcription_state";
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/calllog/datasources/systemcalllog/
SystemCallLogDataSource.java 363 cursor.getColumnIndexOrThrow(VoicemailCompat.TRANSCRIPTION_STATE);
365 contentValues.put(VoicemailCompat.TRANSCRIPTION_STATE, transcriptionState);
396 projectionList.add(VoicemailCompat.TRANSCRIPTION_STATE);

Completed in 442 milliseconds