Home | History | Annotate | Download | only in phone

Lines Matching full:getboolean

69             return "fallback: " + mContext.getResources().getBoolean(
77 return getBoolean("doze.display.supported", R.bool.doze_display_state_supported);
99 return getBoolean("doze.pulse.sigmotion", R.bool.doze_pulse_on_significant_motion);
103 return SystemProperties.getBoolean("doze.vibrate.sigmotion", false);
107 return SystemProperties.getBoolean("doze.vibrate.pickup", false);
111 return getBoolean("doze.pulse.proxcheck", R.bool.doze_proximity_check_before_pulse);
118 private boolean getBoolean(String propName, int resId) {
119 return SystemProperties.getBoolean(propName, mContext.getResources().getBoolean(resId));
137 return mContext.getResources().getBoolean(R.bool.doze_pickup_performs_proximity_check);