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

1 2

  /frameworks/support/tv-provider/src/main/java/androidx/tvprovider/media/tv/
Program.java 97 * @return The value of {@link Programs#COLUMN_START_TIME_UTC_MILLIS} for the program.
100 Long l = mValues.getAsLong(Programs.COLUMN_START_TIME_UTC_MILLIS);
146 return Long.compare(mValues.getAsLong(Programs.COLUMN_START_TIME_UTC_MILLIS),
147 other.mValues.getAsLong(Programs.COLUMN_START_TIME_UTC_MILLIS));
188 if ((index = cursor.getColumnIndex(Programs.COLUMN_START_TIME_UTC_MILLIS)) >= 0
209 Programs.COLUMN_START_TIME_UTC_MILLIS,
255 * @param startTimeUtcMillis The value of {@link Programs#COLUMN_START_TIME_UTC_MILLIS} for
260 mValues.put(Programs.COLUMN_START_TIME_UTC_MILLIS, startTimeUtcMillis);
TvContractCompat.java 429 * {@link Programs#COLUMN_START_TIME_UTC_MILLIS} that is less than this time.
444 * {@link Programs#COLUMN_START_TIME_UTC_MILLIS} that is less than this time.
    [all...]
BasePreviewProgram.java 360 * @see androidx.tvprovider.media.tv.TvContractCompat.PreviewPrograms#COLUMN_START_TIME_UTC_MILLIS
363 Long l = mValues.getAsLong(PreviewPrograms.COLUMN_START_TIME_UTC_MILLIS);
434 values.remove(PreviewProgramColumns.COLUMN_START_TIME_UTC_MILLIS);
554 if ((index = cursor.getColumnIndex(PreviewProgramColumns.COLUMN_START_TIME_UTC_MILLIS))
594 PreviewProgramColumns.COLUMN_START_TIME_UTC_MILLIS,
    [all...]
  /packages/apps/TV/src/com/android/tv/dvr/provider/
DvrContract.java 169 public static final String COLUMN_START_TIME_UTC_MILLIS = "start_time_utc_millis";
EpisodicProgramLoadTask.java 52 Program.getColumnIndex(Programs.COLUMN_START_TIME_UTC_MILLIS);
60 Programs.COLUMN_START_TIME_UTC_MILLIS
DvrDatabaseHelper.java 62 + Schedules.COLUMN_START_TIME_UTC_MILLIS
155 new ColumnInfo(Schedules.COLUMN_START_TIME_UTC_MILLIS, SQL_DATA_TYPE_LONG),
  /packages/providers/TvProvider/tests/src/com/android/providers/tv/
DatabaseHelperTest.java 146 + TvContract.Programs.COLUMN_START_TIME_UTC_MILLIS + " INTEGER,"
175 + "(" + TvContract.Programs.COLUMN_START_TIME_UTC_MILLIS + ");");
188 + TvContract.WatchedPrograms.COLUMN_START_TIME_UTC_MILLIS + " INTEGER,"
EpgDataCleanupServiceTests.java 144 values.put(Programs.COLUMN_START_TIME_UTC_MILLIS, program.startTime);
155 Programs.COLUMN_START_TIME_UTC_MILLIS,
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/tv/
MockTvInputSetupActivity.java 109 values.put(Programs.COLUMN_START_TIME_UTC_MILLIS, startTimeMs);
  /packages/apps/TV/src/com/android/tv/search/
TvProviderSearch.java 302 Programs.COLUMN_START_TIME_UTC_MILLIS,
367 Programs.COLUMN_START_TIME_UTC_MILLIS,
374 sb.append(Programs.COLUMN_START_TIME_UTC_MILLIS).append("<=? AND ");
607 + WatchedPrograms.COLUMN_START_TIME_UTC_MILLIS
  /packages/apps/TV/tests/common/src/com/android/tv/testing/
FakeTvProvider.java 102 Programs.COLUMN_START_TIME_UTC_MILLIS + " ASC";
274 Programs.COLUMN_START_TIME_UTC_MILLIS, Programs.COLUMN_START_TIME_UTC_MILLIS);
320 WatchedPrograms.COLUMN_START_TIME_UTC_MILLIS,
321 WatchedPrograms.COLUMN_START_TIME_UTC_MILLIS);
357 RecordedPrograms.COLUMN_START_TIME_UTC_MILLIS,
358 RecordedPrograms.COLUMN_START_TIME_UTC_MILLIS);
    [all...]
  /packages/apps/TV/tests/input/src/com/android/tv/testinput/
TestTvInputService.java 394 Programs.COLUMN_START_TIME_UTC_MILLIS,
507 values.put(Programs.COLUMN_START_TIME_UTC_MILLIS, c.getLong(index++));
516 values.put(RecordedPrograms.COLUMN_START_TIME_UTC_MILLIS, startTime);
  /packages/apps/TV/tuner/src/com/android/tv/tuner/tvinput/
TunerRecordingSessionWorker.java 74 TvContract.Programs.COLUMN_START_TIME_UTC_MILLIS
104 TvContract.Programs.COLUMN_START_TIME_UTC_MILLIS,
520 values.put(RecordedPrograms.COLUMN_START_TIME_UTC_MILLIS, startTime);
ChannelDataManager.java 62 TvContract.Programs.COLUMN_START_TIME_UTC_MILLIS,
571 TvContract.Programs.COLUMN_START_TIME_UTC_MILLIS,
    [all...]
  /packages/providers/TvProvider/src/com/android/providers/tv/
TvProvider.java 107 private static final String DEFAULT_PROGRAMS_SORT_ORDER = Programs.COLUMN_START_TIME_UTC_MILLIS
246 sProgramProjectionMap.put(Programs.COLUMN_START_TIME_UTC_MILLIS,
247 Programs.COLUMN_START_TIME_UTC_MILLIS);
291 sWatchedProgramProjectionMap.put(WatchedPrograms.COLUMN_START_TIME_UTC_MILLIS,
292 WatchedPrograms.COLUMN_START_TIME_UTC_MILLIS);
322 sRecordedProgramProjectionMap.put(RecordedPrograms.COLUMN_START_TIME_UTC_MILLIS,
323 RecordedPrograms.COLUMN_START_TIME_UTC_MILLIS);
    [all...]
  /developers/build/prebuilts/androidtv/sample-inputs/app/src/main/java/com/example/android/sampletvinput/syncadapter/
SyncAdapter.java 135 .withValue(TvContract.Programs.COLUMN_START_TIME_UTC_MILLIS,
  /frameworks/base/media/java/android/media/tv/
TvContract.java 608 * {@link Programs#COLUMN_START_TIME_UTC_MILLIS} that is less than or equal to
626 * {@link Programs#COLUMN_START_TIME_UTC_MILLIS} that is less than this time.
    [all...]
  /packages/apps/TV/src/com/android/tv/data/epg/
EpgFetchHelper.java 168 Programs.COLUMN_START_TIME_UTC_MILLIS)) {
  /packages/apps/TV/tests/common/src/com/android/tv/testing/data/
ProgramUtils.java 98 values.put(Programs.COLUMN_START_TIME_UTC_MILLIS, timeMs);
  /cts/tests/tests/tv/src/android/media/tv/cts/
TvContractTest.java 75 Programs.COLUMN_START_TIME_UTC_MILLIS,
237 values.put(RecordedPrograms.COLUMN_START_TIME_UTC_MILLIS, 1000);
569 verifyLongColumn(cursor, expectedValues, Programs.COLUMN_START_TIME_UTC_MILLIS);
    [all...]
  /cts/tests/tvprovider/src/android/tvprovider/cts/
TvProviderPerfTest.java 270 .withValue(Programs.COLUMN_START_TIME_UTC_MILLIS, startTimeMs)
  /developers/build/prebuilts/androidtv/sample-inputs/app/src/main/java/com/example/android/sampletvinput/
TvContractUtils.java 212 String[] projection = { Programs.COLUMN_START_TIME_UTC_MILLIS,
  /packages/apps/TV/src/com/android/tv/data/
Program.java 67 TvContract.Programs.COLUMN_START_TIME_UTC_MILLIS,
516 TvContract.Programs.COLUMN_START_TIME_UTC_MILLIS, program.getStartTimeUtcMillis());
    [all...]
  /packages/apps/TV/src/com/android/tv/dvr/data/
RecordedProgram.java 59 RecordedPrograms.COLUMN_START_TIME_UTC_MILLIS,
140 RecordedPrograms.COLUMN_START_TIME_UTC_MILLIS, recordedProgram.mStartTimeUtcMillis);
    [all...]
ScheduledRecording.java 398 Schedules.COLUMN_START_TIME_UTC_MILLIS,
448 values.put(Schedules.COLUMN_START_TIME_UTC_MILLIS, r.getStartTimeMs());
    [all...]

Completed in 1533 milliseconds

1 2