Home
last modified time | relevance | path

Searched refs:getBooleanPreference (Results 1 – 6 of 6) sorted by relevance

/external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/
DBaseTest.java21 import static org.chromium.latency.walt.Utils.getBooleanPreference;
42 if (getBooleanPreference(context, R.string.preference_systrace, true)) { in BaseTest()
DScreenResponseFragment.java19 import static org.chromium.latency.walt.Utils.getBooleanPreference;
112 …shouldShowLatencyChart = getBooleanPreference(getContext(), R.string.preference_show_blink_histogr… in onCreateView()
113 …enableFullScreen = getBooleanPreference(getContext(), R.string.preference_screen_fullscreen, true); in onCreateView()
114 if (getBooleanPreference(getContext(), R.string.preference_systrace, true)) { in onCreateView()
139 … if (getBooleanPreference(getContext(), R.string.preference_auto_increase_brightness, true)) { in onCreateView()
DTapLatencyFragment.java38 import static org.chromium.latency.walt.Utils.getBooleanPreference;
147 …shouldShowLatencyChart = getBooleanPreference(getContext(), R.string.preference_show_tap_histogram… in onCreateView()
148 if (getBooleanPreference(getContext(), R.string.preference_systrace, true)) { in onCreateView()
DLogUploader.java80 if (Utils.getBooleanPreference(context, R.string.preference_auto_upload_log, false)) { in uploadIfAutoEnabled()
DMainActivity.java19 import static org.chromium.latency.walt.Utils.getBooleanPreference;
606 if (getBooleanPreference(this, R.string.preference_systrace, true)) { in requestSystraceWritePermission()
DUtils.java179 … static boolean getBooleanPreference(Context context, @StringRes int keyId, boolean defaultValue) { in getBooleanPreference() method in Utils