HomeSort by relevance Sort by last modified time
    Searched refs:VISIBILITY (Results 1 - 13 of 13) sorted by null

  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothShare.java 161 public static final String VISIBILITY = "visibility";
BluetoothOppTransferHistory.java 112 + BluetoothShare.VISIBILITY + " IS NULL OR "
113 + BluetoothShare.VISIBILITY + " == '"
122 BluetoothShare.VISIBILITY, BluetoothShare.DESTINATION, BluetoothShare.DIRECTION
BluetoothOppProvider.java 179 + BluetoothShare.DESTINATION + " TEXT, " + BluetoothShare.VISIBILITY
247 copyInteger(BluetoothShare.VISIBILITY, values, filteredValues);
250 if (values.getAsInteger(BluetoothShare.VISIBILITY) == null) {
251 filteredValues.put(BluetoothShare.VISIBILITY, BluetoothShare.VISIBILITY_VISIBLE);
BluetoothOppReceiver.java 200 int visibilityColumn = cursor.getColumnIndexOrThrow(BluetoothShare.VISIBILITY);
201 int visibility = cursor.getInt(visibilityColumn); local
206 && visibility == BluetoothShare.VISIBILITY_VISIBLE) {
208 values.put(BluetoothShare.VISIBILITY, BluetoothShare.VISIBILITY_HIDDEN);
218 updateValues.put(BluetoothShare.VISIBILITY, BluetoothShare.VISIBILITY_HIDDEN);
BluetoothOppIncomingFileConfirmActivity.java 169 mUpdateValues.put(BluetoothShare.VISIBILITY, BluetoothShare.VISIBILITY_HIDDEN);
BluetoothOppNotification.java 61 static final String visible = "(" + BluetoothShare.VISIBILITY + " IS NULL OR "
62 + BluetoothShare.VISIBILITY + " == '" + BluetoothShare.VISIBILITY_VISIBLE + "'" + ")";
BluetoothOppService.java 563 cursor.getInt(cursor.getColumnIndexOrThrow(BluetoothShare.VISIBILITY)),
690 int newVisibility = cursor.getInt(cursor.getColumnIndexOrThrow(BluetoothShare.VISIBILITY));
    [all...]
BluetoothOppUtility.java 237 * update visibility to Hidden
241 updateValues.put(BluetoothShare.VISIBILITY, BluetoothShare.VISIBILITY_HIDDEN);
TestActivity.java 204 * BluetoothShare.VISIBILITY, BluetoothShare.USER_CONFIRMATION,
293 // updateValues.put(BluetoothShare.VISIBILITY,
309 updateValues.put(BluetoothShare.VISIBILITY, BluetoothShare.VISIBILITY_HIDDEN);
  /packages/apps/Gallery2/tests/src/com/android/photos/data/
PhotoDatabaseUtils.java 34 Albums.VISIBILITY,
117 values.put(Albums.VISIBILITY, privacy);
PhotoProviderTest.java 229 values.put(Albums.VISIBILITY, Albums.VISIBILITY_PRIVATE);
  /packages/apps/Gallery2/src/com/android/photos/data/
PhotoDatabase.java 63 { Albums.VISIBILITY, "INTEGER NOT NULL" },
PhotoProvider.java 145 * Column name for the visibility level of the album. Can be any of the
148 public static final String VISIBILITY = "visibility";
160 // Privacy values for Albums.VISIBILITY

Completed in 150 milliseconds