HomeSort by relevance Sort by last modified time
    Searched defs:Prefs (Results 1 - 8 of 8) sorted by null

  /system/update_engine/common/
prefs.h 92 class Prefs : public PrefsBase {
94 Prefs() : PrefsBase(&file_storage_) {}
135 DISALLOW_COPY_AND_ASSIGN(Prefs);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
DndTile.java 37 import com.android.systemui.Prefs;
80 Prefs.putBoolean(context, Prefs.Key.DND_TILE_VISIBLE, visible);
84 return Prefs.getBoolean(context, Prefs.Key.DND_TILE_VISIBLE, false /* defaultValue */);
88 Prefs.putBoolean(context, Prefs.Key.DND_TILE_COMBINED_ICON, combined);
92 return Prefs.getBoolean(context, Prefs.Key.DND_TILE_COMBINED_ICON,
126 int zen = Prefs.getInt(mContext, Prefs.Key.DND_FAVORITE_ZEN, Global.ZEN_MODE_ALARMS)
    [all...]
DataSaverTile.java 23 import com.android.systemui.Prefs;
61 || Prefs.getBoolean(mContext, Prefs.Key.QS_DATA_SAVER_DIALOG_SHOWN, false)) {
80 Prefs.putBoolean(mContext, Prefs.Key.QS_DATA_SAVER_DIALOG_SHOWN, true);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
VolumeUI.java 38 import com.android.systemui.Prefs;
191 Prefs.remove(mContext, key);
193 Prefs.putBoolean(mContext, key, (Boolean) value);
195 Prefs.putInt(mContext, key, (Integer) value);
197 Prefs.putLong(mContext, key, (Long) value);
ZenModePanel.java 56 import com.android.systemui.Prefs;
211 Prefs.putBoolean(mContext, prefKey, true);
218 return Prefs.Key.DND_CONFIRMED_PRIORITY_INTRODUCTION;
220 return Prefs.Key.DND_CONFIRMED_SILENCE_INTRODUCTION;
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
Prefs.java 28 public final class Prefs {
29 private Prefs() {} // no instantation
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
RecentsTaskLoadPlan.java 33 import com.android.systemui.Prefs;
137 long lastStackActiveTime = Prefs.getLong(mContext,
138 Prefs.Key.OVERVIEW_LAST_STACK_TASK_ACTIVE_TIME, 0);
192 Prefs.putLong(mContext, Prefs.Key.OVERVIEW_LAST_STACK_TASK_ACTIVE_TIME,
  /frameworks/base/packages/SystemUI/src/com/android/systemui/tv/pip/
PipManager.java 42 import com.android.systemui.Prefs;
54 import static com.android.systemui.Prefs.Key.TV_PICTURE_IN_PICTURE_ONBOARDING_SHOWN;
217 mOnboardingShown = Prefs.getBoolean(
453 Prefs.putBoolean(mContext, TV_PICTURE_IN_PICTURE_ONBOARDING_SHOWN, true);

Completed in 155 milliseconds