HomeSort by relevance Sort by last modified time
    Searched refs:toContentValues (Results 1 - 25 of 51) sorted by null

1 2 3

  /frameworks/support/tv-provider/tests/src/android/support/media/tv/
ProgramTest.java 59 ContentValues contentValues = emptyProgram.toContentValues();
77 ContentValues contentValues = sampleProgram.toContentValues();
89 ContentValues contentValues = fullyPopulatedProgram.toContentValues();
107 Uri channelUri = resolver.insert(Channels.CONTENT_URI, channel.toContentValues());
113 fullyPopulatedProgram.toContentValues());
129 Uri channelUri = resolver.insert(Channels.CONTENT_URI, channel.toContentValues());
135 fullyPopulatedProgram.toContentValues());
144 programUri, updatedProgram.toContentValues(), null, null));
152 programUri, updatedProgram.toContentValues(), null, null));
158 .toContentValues();
    [all...]
ChannelTest.java 58 ContentValues contentValues = emptyChannel.toContentValues(true);
75 ContentValues contentValues = sampleChannel.toContentValues(true);
85 ContentValues contentValues = fullyPopulatedChannel.toContentValues(true);
99 ContentValues contentValues = fullyPopulatedChannel.toContentValues();
115 ContentValues contentValues = fullyPopulatedChannel.toContentValues();
126 assertEquals(1, resolver.update(channelUri, updatedChannel.toContentValues(), null, null));
134 channelUri, updatedChannel.toContentValues(), null, null));
140 .toContentValues();
226 // When we insert a channel using toContentValues() to the system, we drop some
233 assertEquals(channelA.toContentValues(), channelB.toContentValues())
    [all...]
PreviewProgramTest.java 62 ContentValues contentValues = emptyProgram.toContentValues();
80 ContentValues contentValues = sampleProgram.toContentValues(true);
92 ContentValues contentValues = fullyPopulatedProgram.toContentValues(true);
112 Uri channelUri = resolver.insert(Channels.CONTENT_URI, channel.toContentValues());
118 fullyPopulatedProgram.toContentValues());
135 Uri channelUri = resolver.insert(Channels.CONTENT_URI, channel.toContentValues());
141 fullyPopulatedProgram.toContentValues());
151 previewProgramUri, updatedProgram.toContentValues(), null, null));
159 previewProgramUri, updatedProgram.toContentValues(), null, null));
165 .toContentValues();
    [all...]
WatchNextProgramTest.java 61 ContentValues contentValues = emptyProgram.toContentValues(true);
76 ContentValues contentValues = sampleProgram.toContentValues(true);
88 ContentValues contentValues = fullyPopulatedProgram.toContentValues(true);
106 fullyPopulatedProgram.toContentValues());
122 fullyPopulatedProgram.toContentValues());
132 watchNextProgramUri, updatedProgram.toContentValues(), null, null));
141 watchNextProgramUri, updatedProgram.toContentValues(), null, null));
148 .toContentValues();
234 ContentValues contentValues = previewProgram.toContentValues(true);
342 // When we insert a channel using toContentValues() to the system, we drop som
    [all...]
ChannelLogoUtilsTest.java 44 .setType(TvContractCompat.Channels.TYPE_OTHER).build().toContentValues();
  /frameworks/support/tv-provider/src/android/support/media/tv/
PreviewProgram.java 48 * previewProgram.toContentValues());
68 * updatedProgram.toContentValues(), null, null);
126 public ContentValues toContentValues() {
127 return toContentValues(false);
139 public ContentValues toContentValues(boolean includeProtectedFields) {
140 ContentValues values = super.toContentValues(includeProtectedFields);
WatchNextProgram.java 50 * watchNextProgram.toContentValues());
70 * updatedProgram.toContentValues(), null, null);
129 public ContentValues toContentValues() {
130 return toContentValues(false);
142 public ContentValues toContentValues(boolean includeProtectedFields) {
143 ContentValues values = super.toContentValues(includeProtectedFields);
Program.java 45 * Uri programUri = getContentResolver().insert(Programs.CONTENT_URI, program.toContentValues());
65 * updatedProgram.toContentValues(), null, null);
161 public ContentValues toContentValues() {
162 ContentValues values = super.toContentValues();
BasePreviewProgram.java 313 public ContentValues toContentValues() {
314 return toContentValues(false);
325 public ContentValues toContentValues(boolean includeProtectedFields) {
326 ContentValues values = super.toContentValues();
    [all...]
Channel.java 50 * Uri channelUri = getContentResolver().insert(Channels.CONTENT_URI, channel.toContentValues());
70 * updatedChannel.toContentValues(), null, null);
351 public ContentValues toContentValues() {
352 return toContentValues(false);
363 public ContentValues toContentValues(boolean includeProtectedFields) {
    [all...]
  /developers/samples/android/tv/ChannelsPrograms/Application/src/main/java/com/example/android/tv/channelsprograms/playback/
WatchNextAdapter.java 56 program.toContentValues());
68 program.toContentValues(),
  /prebuilts/sdk/current/support/tv-provider/
android-support-tv-provider.jar 
  /packages/apps/TV/src/com/android/tv/dvr/provider/
DvrDatabaseHelper.java 235 ContentValues values = ScheduledRecording.toContentValues(r);
255 ContentValues values = ScheduledRecording.toContentValues(r);
295 ContentValues values = SeriesRecording.toContentValues(r);
315 ContentValues values = SeriesRecording.toContentValues(r);
  /developers/samples/android/tv/ChannelsPrograms/Application/src/main/java/com/example/android/tv/channelsprograms/
SyncProgramsJobService.java 148 previewProgram.toContentValues());
170 buildProgram(channelId, update).toContentValues(),
  /packages/apps/TV/src/com/android/tv/data/epg/
EpgFetchHelper.java 100 .withValues(Program.toContentValues(newProgram))
125 .withValues(Program.toContentValues(newProgram))
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
Account.java 651 .withValues(mHostAuthRecv.mCredential.toContentValues())
657 b.withValues(mHostAuthRecv.toContentValues());
674 .withValues(mHostAuthSend.mCredential.toContentValues())
681 b.withValues(mHostAuthSend.toContentValues());
703 b.withValues(toContentValues());
735 public ContentValues toContentValues() {
    [all...]
EmailContent.java 131 public abstract ContentValues toContentValues();
380 Uri res = context.getContentResolver().insert(mBaseUri, toContentValues());
511 public ContentValues toContentValues() {
    [all...]
Credential.java 160 public ContentValues toContentValues() {
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSetupOutgoingFragment.java 354 cred.update(context, cred.toContentValues());
360 account.mHostAuthSend.update(context, account.mHostAuthSend.toContentValues());
  /packages/apps/ExactCalculator/src/com/android/calculator2/
ExpressionDB.java 106 public ContentValues toContentValues() {
501 ContentValues cvs = data.toContentValues();
  /developers/samples/android/tv/ChannelsPrograms/Application/src/main/java/com/example/android/tv/channelsprograms/util/
TvUtil.java 102 builder.build().toContentValues());
  /packages/apps/Email/provider_src/com/android/email/mail/internet/
AuthenticationCache.java 151 cred.update(context, cred.toContentValues());
  /packages/apps/Email/provider_src/com/android/email/provider/
Utilities.java 192 content.update(context, content.toContentValues());
  /packages/apps/TV/src/com/android/tv/data/
PreviewDataManager.java 357 .toContentValues());
450 .toContentValues());
  /frameworks/base/core/java/android/app/
DownloadManager.java 748 ContentValues toContentValues(String packageName) {
    [all...]

Completed in 1594 milliseconds

1 2 3