Searched refs:TvProviderUtils (Results 1 – 8 of 8) sorted by relevance
/packages/apps/TV/tests/robotests/src/com/android/tv/util/ |
D | TvProviderUtilsTest.java | 60 TvProviderUtils.addExtraColumnsToProjection( in testAddExtraColumnsToProjection() 61 inputStrings, TvProviderUtils.EXTRA_PROGRAM_COLUMN_STATE)) in testAddExtraColumnsToProjection() 67 TvProviderUtils.EXTRA_PROGRAM_COLUMN_STATE) in testAddExtraColumnsToProjection() 76 TvProviderUtils.EXTRA_PROGRAM_COLUMN_SERIES_ID, in testAddExtraColumnsToProjection_extraColumnExists() 77 TvProviderUtils.EXTRA_PROGRAM_COLUMN_STATE, in testAddExtraColumnsToProjection_extraColumnExists() 81 TvProviderUtils.addExtraColumnsToProjection( in testAddExtraColumnsToProjection_extraColumnExists() 82 inputStrings, TvProviderUtils.EXTRA_PROGRAM_COLUMN_STATE)) in testAddExtraColumnsToProjection_extraColumnExists() 87 TvProviderUtils.EXTRA_PROGRAM_COLUMN_SERIES_ID, in testAddExtraColumnsToProjection_extraColumnExists() 88 TvProviderUtils.EXTRA_PROGRAM_COLUMN_STATE, in testAddExtraColumnsToProjection_extraColumnExists() 100 TvProviderUtils.getExistingColumns( in testGetExistingColumns_noException() [all …]
|
/packages/apps/TV/src/com/android/tv/util/ |
D | AsyncDbTask.java | 131 && TvProviderUtils.checkSeriesIdColumn(context, Programs.CONTENT_URI)) { in doInBackground() 133 TvProviderUtils.addExtraColumnsToProjection( in doInBackground() 134 mProjection, TvProviderUtils.EXTRA_PROGRAM_COLUMN_SERIES_ID); in doInBackground() 136 if (TvProviderUtils.checkSeriesIdColumn( in doInBackground() 139 TvProviderUtils.addExtraColumnsToProjection( in doInBackground() 140 mProjection, TvProviderUtils.EXTRA_PROGRAM_COLUMN_SERIES_ID); in doInBackground() 142 if (TvProviderUtils.checkStateColumn( in doInBackground() 145 TvProviderUtils.addExtraColumnsToProjection( in doInBackground() 146 mProjection, TvProviderUtils.EXTRA_PROGRAM_COLUMN_STATE); in doInBackground()
|
D | TvProviderUtils.java | 42 public final class TvProviderUtils { class 216 private TvProviderUtils() {} in TvProviderUtils() method in TvProviderUtils
|
D | Utils.java | 330 if (TvProviderUtils.checkSeriesIdColumn(context, TvContract.Programs.CONTENT_URI)) { in getProgramAt() 333 TvProviderUtils.addExtraColumnsToProjection( in getProgramAt() 334 projection, TvProviderUtils.EXTRA_PROGRAM_COLUMN_SERIES_ID); in getProgramAt()
|
/packages/apps/TV/src/com/android/tv/data/epg/ |
D | EpgFetchHelper.java | 38 import com.android.tv.util.TvProviderUtils; 206 if (TvProviderUtils.checkSeriesIdColumn(context, Programs.CONTENT_URI)) { in queryPrograms() 208 TvProviderUtils.addExtraColumnsToProjection( in queryPrograms() 209 projection, TvProviderUtils.EXTRA_PROGRAM_COLUMN_SERIES_ID); in queryPrograms()
|
/packages/apps/TV/src/com/android/tv/dvr/data/ |
D | RecordedProgram.java | 43 import com.android.tv.util.TvProviderUtils; 125 if (TvProviderUtils.getRecordedProgramHasSeriesIdColumn()) { in fromCursor() 128 if (TvProviderUtils.getRecordedProgramHasStateColumn()) { in fromCursor() 193 if (TvProviderUtils.checkSeriesIdColumn(context, RecordedPrograms.CONTENT_URI)) { in toValues() 196 if (TvProviderUtils.checkStateColumn(context, RecordedPrograms.CONTENT_URI)) { in toValues()
|
/packages/apps/TV/src/com/android/tv/data/ |
D | ProgramDataManager.java | 49 import com.android.tv.util.TvProviderUtils; 623 if (TvProviderUtils.checkSeriesIdColumn(mContext, Programs.CONTENT_URI)) { in doInBackground() 626 TvProviderUtils.addExtraColumnsToProjection( in doInBackground() 627 projection, TvProviderUtils.EXTRA_PROGRAM_COLUMN_SERIES_ID); in doInBackground()
|
D | ProgramImpl.java | 42 import com.android.tv.util.TvProviderUtils; 160 if (TvProviderUtils.getProgramHasSeriesIdColumn()) { in fromCursor() 553 if (TvProviderUtils.checkSeriesIdColumn(context, Programs.CONTENT_URI)) { in toContentValues()
|