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

  /packages/apps/Dialer/java/com/android/voicemail/impl/transcribe/
TranscriptionDbHelper.java 36 /** Helper class for reading and writing transcription data in the database */
43 Voicemails.TRANSCRIPTION, // 1
48 static final int TRANSCRIPTION = 1;
75 String transcription = cursor.getString(TRANSCRIPTION); local
77 return new Pair<>(transcription, transcriptionState);
90 Voicemails.TRANSCRIPTION + " is NULL AND " + VoicemailCompat.TRANSCRIPTION_STATE + "=?";
135 void setTranscriptionAndState(String transcription, int transcriptionState) {
141 values.put(Voicemails.TRANSCRIPTION, transcription);
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/voicemail/listui/
VoicemailCursorLoader.java 44 AnnotatedCallLog.TRANSCRIPTION,
61 private static final int TRANSCRIPTION = 7;
108 .setTranscription(cursor.getString(TRANSCRIPTION))
  /packages/apps/Dialer/java/com/android/dialer/phonenumbercache/
CallLogQuery.java 54 public static final int TRANSCRIPTION = 22;
90 Calls.TRANSCRIPTION, // 22
  /packages/apps/Dialer/java/com/android/voicemail/impl/sync/
VoicemailsQueryHelper.java 43 Voicemails.TRANSCRIPTION // 4
50 public static final int TRANSCRIPTION = 4;
103 final String transcription = cursor.getString(TRANSCRIPTION); local
107 .setTranscription(transcription)
189 /** Utility method to add a transcription to the voicemail. */
190 public void updateWithTranscription(Voicemail voicemail, String transcription) {
193 contentValues.put(Voicemails.TRANSCRIPTION, transcription);
  /packages/apps/Dialer/java/com/android/voicemail/impl/utils/
VoicemailDatabaseUtil.java 90 contentValues.put(Voicemails.TRANSCRIPTION, voicemail.getTranscription());
  /packages/apps/Dialer/java/com/android/dialer/calllog/database/
AnnotatedCallLogDatabaseHelper.java 55 + (AnnotatedCallLog.TRANSCRIPTION + " integer, ")
  /packages/apps/Dialer/java/com/android/dialer/calllog/database/contract/
AnnotatedCallLogContract.java 198 * See {@link android.provider.CallLog.Calls#TRANSCRIPTION}.
202 public static final String TRANSCRIPTION = "transcription";
  /packages/apps/Dialer/java/com/android/voicemail/impl/fetch/
VoicemailFetchedCallback.java 67 Voicemails.TRANSCRIPTION,
102 VvmLog.w(TAG, String.format("Failed to schedule transcription for %s", uri));
  /frameworks/base/core/java/android/provider/
VoicemailContract.java 250 * The transcription of the voicemail entry. This will only be populated if the voicemail
251 * entry has a valid transcription.
254 public static final String TRANSCRIPTION = "transcription";
256 * The state of the voicemail transcription.
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
284 * completed and the result has been stored in the {@link #TRANSCRIPTION} column
    [all...]
CallLog.java 339 * Transcription of the call or voicemail entry. This will only be populated for call log
342 public static final String TRANSCRIPTION = "transcription";
345 * State of voicemail transcription entry. This will only be populated for call log
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
VoicemailProviderTest.java 128 Voicemails.TRANSCRIPTION, Voicemails.NEW, Voicemails.IS_READ,
182 values.put(Voicemails.TRANSCRIPTION, "Testing 123");
201 updateValues.put(Voicemails.TRANSCRIPTION, "foo");
251 retainDirty.put(Voicemails.TRANSCRIPTION, "foo");
257 newValues.put(Voicemails.TRANSCRIPTION, "foo");
267 retainDirty.put(Voicemails.TRANSCRIPTION, "foo");
273 newValues.put(Voicemails.TRANSCRIPTION, "foo");
    [all...]
ContactsDatabaseHelperUpgradeTest.java 476 new TableColumn(Voicemails.TRANSCRIPTION, TEXT, false, null),
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/calllog/datasources/systemcalllog/
SystemCallLogDataSource.java 270 int transcriptionColumn = cursor.getColumnIndexOrThrow(Calls.TRANSCRIPTION);
303 String transcription = cursor.getString(transcriptionColumn); local
346 contentValues.put(AnnotatedCallLog.TRANSCRIPTION, transcription);
380 Calls.TRANSCRIPTION,
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
VoicemailContentTable.java 68 .add(Voicemails.TRANSCRIPTION)
110 .add(Voicemails.TRANSCRIPTION)
CallLogDatabaseHelper.java 157 Voicemails.TRANSCRIPTION + " TEXT," +
CallLogProvider.java 144 sCallsProjectionMap.put(Calls.TRANSCRIPTION, Calls.TRANSCRIPTION);
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
VoicemailContractTest.java 101 Voicemails.TRANSCRIPTION,
154 value.put(Voicemails.TRANSCRIPTION, "foo");
271 newValues.put(Voicemails.TRANSCRIPTION, "foo");
375 newValues.put(Voicemails.TRANSCRIPTION, "foo");
  /packages/apps/Dialer/java/com/android/dialer/databasepopulator/
VoicemailPopulator.java 42 // Long transcription with an embedded phone number.
53 // RTL transcription.
160 values.put(Voicemails.TRANSCRIPTION, getTranscription());
170 public abstract Builder setTranscription(@NonNull String transcription);
  /packages/apps/Dialer/java/com/android/dialer/app/calllog/
CallLogNotificationsQueryHelper.java 267 public final String transcription; field in class:CallLogNotificationsQueryHelper.NewCall
279 String transcription,
289 this.transcription = transcription;
309 Calls.TRANSCRIPTION,
CallLogAdapter.java     [all...]
  /packages/apps/Dialer/java/com/android/dialer/app/voicemail/
VoicemailPlaybackPresenter.java 893 String transcription = local
894 contentInfo.getString(contentInfo.getColumnIndex(Voicemails.TRANSCRIPTION));
    [all...]
  /prebuilts/sdk/21/
android.jar 
  /prebuilts/sdk/25/
android.jar 

Completed in 400 milliseconds