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

  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothShare.java 161 public static final String VISIBILITY = "visibility";
BluetoothOppTransferHistory.java 102 + BluetoothShare.VISIBILITY + " IS NULL OR " + BluetoothShare.VISIBILITY + " == '"
109 BluetoothShare.VISIBILITY, BluetoothShare.DESTINATION, BluetoothShare.DIRECTION
BluetoothOppReceiver.java 194 int visibilityColumn = cursor.getColumnIndexOrThrow(BluetoothShare.VISIBILITY);
195 int visibility = cursor.getInt(visibilityColumn); local
200 && visibility == BluetoothShare.VISIBILITY_VISIBLE) {
202 values.put(BluetoothShare.VISIBILITY, BluetoothShare.VISIBILITY_HIDDEN);
212 updateValues.put(BluetoothShare.VISIBILITY, BluetoothShare.VISIBILITY_HIDDEN);
BluetoothOppProvider.java 177 + BluetoothShare.DESTINATION + " TEXT, " + BluetoothShare.VISIBILITY
245 copyInteger(BluetoothShare.VISIBILITY, values, filteredValues);
248 if (values.getAsInteger(BluetoothShare.VISIBILITY) == null) {
249 filteredValues.put(BluetoothShare.VISIBILITY, BluetoothShare.VISIBILITY_VISIBLE);
BluetoothOppIncomingFileConfirmActivity.java 169 mUpdateValues.put(BluetoothShare.VISIBILITY, BluetoothShare.VISIBILITY_HIDDEN);
BluetoothOppNotification.java 63 static final String visible = "(" + BluetoothShare.VISIBILITY + " IS NULL OR "
64 + BluetoothShare.VISIBILITY + " == '" + BluetoothShare.VISIBILITY_VISIBLE + "'" + ")";
BluetoothOppService.java 530 cursor.getInt(cursor.getColumnIndexOrThrow(BluetoothShare.VISIBILITY)),
663 int newVisibility = cursor.getInt(cursor.getColumnIndexOrThrow(BluetoothShare.VISIBILITY));
    [all...]
BluetoothOppUtility.java 227 * update visibility to Hidden
231 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);
  /frameworks/base/core/java/android/provider/
Calendar.java 459 * Visibility for the event.
462 public static final String VISIBILITY = "visibility";
682 DatabaseUtils.cursorIntToContentValuesIfPresent(cursor, cv, VISIBILITY);
    [all...]
  /packages/apps/Email/src/com/android/exchange/adapter/
CalendarSyncAdapter.java 521 cv.put(Events.VISIBILITY, encodeVisibility(getValueInt()));
910 int visibility = 0; local
1691 Integer visibility = entityValues.getAsInteger(Events.VISIBILITY); local
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
EditEvent.java 135 Events.VISIBILITY, // 13
242 // Used to control the visibility of the Guests textview. Default to true
759 mVisibilitySpinner = (Spinner) findViewById(R.id.visibility);
983 int visibility = intent.getIntExtra(Events.VISIBILITY, -1); local
1016 int visibility = cursor.getInt(EVENT_INDEX_VISIBILITY); local
2266 int visibility = mVisibilitySpinner.getSelectedItemPosition(); local
    [all...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarDatabaseHelper.java 277 "visibility INTEGER NOT NULL DEFAULT 0," +
689 "visibility INTEGER NOT NULL DEFAULT 0," +
744 "visibility, " +
    [all...]
CalendarProvider2.java     [all...]

Completed in 597 milliseconds