Home
last modified time | relevance | path

Searched refs:KEY_IS_VISIBLE (Results 1 – 3 of 3) sorted by relevance

/packages/providers/MediaProvider/tests/src/com/android/providers/media/photopicker/data/
DPickerDatabaseHelperTest.java46 private static final String KEY_IS_VISIBLE = "is_visible"; field in PickerDatabaseHelperTest
79 KEY_IS_VISIBLE, in testMediaColumns()
95 values.put(KEY_IS_VISIBLE, 1); in testMediaColumns()
164 values.put(KEY_IS_VISIBLE, 1); in testCheck_cloudOrLocal()
191 values.put(KEY_IS_VISIBLE, 1); in testUniqueConstraint_local()
197 values.put(KEY_IS_VISIBLE, 1); in testUniqueConstraint_local()
251 values.put(KEY_IS_VISIBLE, 1); in testUniqueConstraint_cloud()
264 values.put(KEY_IS_VISIBLE, 1); in testUniqueConstraint_localAndCloudPlusLocal()
271 values.put(KEY_IS_VISIBLE, 1); in testUniqueConstraint_localAndCloudPlusLocal()
278 values.putNull(KEY_IS_VISIBLE); in testUniqueConstraint_localAndCloudPlusLocal()
[all …]
/packages/providers/MediaProvider/src/com/android/providers/media/photopicker/v2/model/
DMediaQuery.java22 import static com.android.providers.media.photopicker.data.PickerDbFacade.KEY_IS_VISIBLE;
125 queryBuilder.appendWhereStandalone(KEY_IS_VISIBLE + " = 1"); in addWhereClause()
/packages/providers/MediaProvider/src/com/android/providers/media/photopicker/data/
DPickerDbFacade.java114 public static final String KEY_IS_VISIBLE = "is_visible"; field in PickerDbFacade
137 private static final String WHERE_IS_VISIBLE = KEY_IS_VISIBLE + " = 1";
214 CONTENT_VALUE_VISIBLE.put(KEY_IS_VISIBLE, 1); in CONTENT_VALUE_VISIBLE.put() argument
215 CONTENT_VALUE_HIDDEN.putNull(KEY_IS_VISIBLE);
505 values.putNull(KEY_IS_VISIBLE); in executeInternal()
1316 values.put(KEY_IS_VISIBLE, 1); in cursorToContentValue()