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

1 2

  /frameworks/support/tv-provider/src/android/support/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...]
  /packages/apps/TV/src/com/android/tv/dvr/provider/
DvrContract.java 123 public static final String COLUMN_START_TIME_UTC_MILLIS = "start_time_utc_millis";
DvrDatabaseHelper.java 55 + Schedules.COLUMN_START_TIME_UTC_MILLIS + " INTEGER NOT NULL,"
110 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 268 Programs.COLUMN_START_TIME_UTC_MILLIS,
318 Programs.COLUMN_START_TIME_UTC_MILLIS,
324 sb.append(Programs.COLUMN_START_TIME_UTC_MILLIS).append("<=? AND ");
513 "MAX(" + WatchedPrograms.COLUMN_START_TIME_UTC_MILLIS
  /packages/apps/TV/tests/common/src/com/android/tv/testing/
ProgramUtils.java 77 values.put(Programs.COLUMN_START_TIME_UTC_MILLIS, timeMs);
  /packages/apps/TV/src/com/android/tv/dvr/
EpisodicProgramLoadTask.java 55 Program.getColumnIndex(Programs.COLUMN_START_TIME_UTC_MILLIS);
63 Programs.COLUMN_START_TIME_UTC_MILLIS + ">? AND "
RecordedProgram.java 62 RecordedPrograms.COLUMN_START_TIME_UTC_MILLIS,
139 values.put(RecordedPrograms.COLUMN_START_TIME_UTC_MILLIS,
    [all...]
ScheduledRecording.java 348 Schedules.COLUMN_START_TIME_UTC_MILLIS,
397 values.put(Schedules.COLUMN_START_TIME_UTC_MILLIS, r.getStartTimeMs());
  /packages/apps/TV/tests/input/src/com/android/tv/testinput/
TestTvInputService.java 384 Programs.COLUMN_START_TIME_UTC_MILLIS,
484 values.put(Programs.COLUMN_START_TIME_UTC_MILLIS, c.getLong(index++));
494 values.put(RecordedPrograms.COLUMN_START_TIME_UTC_MILLIS, startTime);
  /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 607 * {@link Programs#COLUMN_START_TIME_UTC_MILLIS} that is less than this time.
624 * {@link Programs#COLUMN_START_TIME_UTC_MILLIS} that is less than this time.
    [all...]
  /packages/apps/TV/src/com/android/tv/data/epg/
EpgFetcher.java 474 Program.PROJECTION, null, null, Programs.COLUMN_START_TIME_UTC_MILLIS)) {
537 values.put(TvContract.Programs.COLUMN_START_TIME_UTC_MILLIS,
  /packages/apps/TV/src/com/android/tv/tuner/tvinput/
TunerRecordingSessionWorker.java 71 private static final String SORT_BY_TIME = TvContract.Programs.COLUMN_START_TIME_UTC_MILLIS
426 TvContract.Programs.COLUMN_START_TIME_UTC_MILLIS,
ChannelDataManager.java 63 TvContract.Programs.COLUMN_START_TIME_UTC_MILLIS,
525 .withValue(TvContract.Programs.COLUMN_START_TIME_UTC_MILLIS,
  /packages/apps/TV/tests/unit/src/com/android/tv/data/
ProgramDataManagerTest.java 372 TvContract.Programs.COLUMN_START_TIME_UTC_MILLIS,
443 case TvContract.Programs.COLUMN_START_TIME_UTC_MILLIS:
  /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,
  /prebuilts/sdk/current/support/tv-provider/
android-support-tv-provider.jar 
  /packages/apps/TV/src/com/android/tv/data/
ProgramDataManager.java 78 private static final String SORT_BY_TIME = Programs.COLUMN_START_TIME_UTC_MILLIS + ", "

Completed in 562 milliseconds

1 2