HomeSort by relevance Sort by last modified time
    Searched refs:getBoolean (Results 1 - 25 of 673) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapConfig.java 33 sUseProfileForOwnerVcard = r.getBoolean(R.bool.pbap_use_profile_for_owner_vcard);
38 sIncludePhotosInVcard = r.getBoolean(R.bool.pbap_include_photos_in_vcard);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Settings.java 156 return prefs.getBoolean(Settings.PREF_SOUND_ON,
157 res.getBoolean(R.bool.config_default_sound_enabled));
163 return hasVibrator && prefs.getBoolean(PREF_VIBRATE_ON,
164 res.getBoolean(R.bool.config_default_vibration_enabled));
176 return prefs.getBoolean(Settings.PREF_BLOCK_POTENTIALLY_OFFENSIVE,
177 res.getBoolean(R.bool.config_block_potentially_offensive));
181 return res.getBoolean(R.bool.config_gesture_input_enabled_by_build_config);
187 && prefs.getBoolean(Settings.PREF_GESTURE_INPUT, true);
192 return res.getBoolean(R.bool.config_enable_show_option_of_key_preview_popup);
197 final boolean defaultKeyPreviewPopup = res.getBoolean(
    [all...]
SettingsValues.java 113 mAutoCap = prefs.getBoolean(Settings.PREF_AUTO_CAP, true);
117 mSlidingKeyInputPreviewEnabled = prefs.getBoolean(
125 mIncludesOtherImesInLanguageSwitchList = prefs.getBoolean(
128 mUseContactsDict = prefs.getBoolean(Settings.PREF_KEY_USE_CONTACTS_DICT, true);
129 mUseDoubleSpacePeriod = prefs.getBoolean(Settings.PREF_KEY_USE_DOUBLE_SPACE_PERIOD, true);
144 mGesturePreviewTrailEnabled = prefs.getBoolean(Settings.PREF_GESTURE_PREVIEW_TRAIL, true);
145 mGestureFloatingPreviewTextEnabled = prefs.getBoolean(
261 return prefs.getBoolean(Settings.PREF_BIGRAM_PREDICTIONS, res.getBoolean(
  /packages/apps/Phone/src/com/android/phone/
GsmUmtsOptions.java 70 if (!res.getBoolean(R.bool.config_apn_expand)) {
73 if (!res.getBoolean(R.bool.config_operator_selection_expand)) {
77 if (!res.getBoolean(R.bool.config_prefer_2g)) {
81 if (res.getBoolean(R.bool.csp_enabled)) {
  /packages/apps/Browser/src/com/android/browser/
BrowserSettings.java 389 mController.getUi().setUseQuickControls(sharedPreferences.getBoolean(key, false));
454 return mPrefs.getBoolean(PREF_DEBUG_MENU, false);
638 return mPrefs.getBoolean(PREF_FORCE_USERSCALABLE, false);
670 return mPrefs.getBoolean(PREF_ALLOW_APP_TABS, false);
674 return mPrefs.getBoolean(PREF_OPEN_IN_BACKGROUND, false);
678 return mPrefs.getBoolean(PREF_ENABLE_JAVASCRIPT, true);
694 return mPrefs.getBoolean(PREF_LOAD_PAGE, true);
698 return mPrefs.getBoolean(PREF_AUTOFIT_PAGES, true);
702 return mPrefs.getBoolean(PREF_BLOCK_POPUP_WINDOWS, true);
706 return mPrefs.getBoolean(PREF_LOAD_IMAGES, true)
    [all...]
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
Settings.java 70 mKeySound = mSharedPref.getBoolean(ANDPY_CONFS_KEYSOUND_KEY, true);
71 mVibrate = mSharedPref.getBoolean(ANDPY_CONFS_VIBRATE_KEY, false);
72 mPrediction = mSharedPref.getBoolean(ANDPY_CONFS_PREDICTION_KEY, true);
  /packages/providers/MediaProvider/src/com/android/providers/media/
MtpReceiver.java 46 boolean connected = extras.getBoolean(UsbManager.USB_CONFIGURED);
47 boolean mtpEnabled = extras.getBoolean(UsbManager.USB_FUNCTION_MTP);
48 boolean ptpEnabled = extras.getBoolean(UsbManager.USB_FUNCTION_PTP);
  /packages/apps/Email/src/com/android/email/
Preferences.java 122 return mSharedPreferences.getBoolean(ENABLE_DEBUG_LOGGING, false);
130 return mSharedPreferences.getBoolean(ENABLE_EXCHANGE_LOGGING, false);
138 return mSharedPreferences.getBoolean(ENABLE_EXCHANGE_FILE_LOGGING, false);
146 return mSharedPreferences.getBoolean(INHIBIT_GRAPHICS_ACCELERATION, false);
154 return mSharedPreferences.getBoolean(FORCE_ONE_MINUTE_REFRESH, false);
162 return mSharedPreferences.getBoolean(ENABLE_STRICT_MODE, false);
204 return mSharedPreferences.getBoolean(BACKGROUND_ATTACHMENTS, false);
296 return getBoolean(context, account.getEmailAddress(), REQUIRE_MANUAL_SYNC_DIALOG_SHOWN,
341 private boolean getBoolean(Context context, String account, String key, boolean def) {
342 return mSharedPreferences.getBoolean(makeKey(account, key), def)
    [all...]
  /frameworks/base/core/java/android/content/
SyncAdaptersCache.java 59 sa.getBoolean(com.android.internal.R.styleable.SyncAdapter_userVisible, true);
61 sa.getBoolean(com.android.internal.R.styleable.SyncAdapter_supportsUploading,
64 sa.getBoolean(com.android.internal.R.styleable.SyncAdapter_isAlwaysSyncable,
67 sa.getBoolean(com.android.internal.R.styleable.SyncAdapter_allowParallelSyncs,
  /frameworks/base/core/java/com/android/server/
NetworkManagementSocketTagger.java 79 if (SystemProperties.getBoolean(PROP_QTAGUID_ENABLED, false)) {
101 if (SystemProperties.getBoolean(PROP_QTAGUID_ENABLED, false)) {
115 if (SystemProperties.getBoolean(PROP_QTAGUID_ENABLED, false)) {
125 if (SystemProperties.getBoolean(PROP_QTAGUID_ENABLED, false)) {
  /packages/apps/ContactsCommon/src/com/android/contacts/common/preference/
ContactsPreferences.java 50 return mContext.getResources().getBoolean(R.bool.config_sort_order_user_changeable);
54 if (mContext.getResources().getBoolean(R.bool.config_default_sort_order_primary)) {
84 return mContext.getResources().getBoolean(R.bool.config_display_order_user_changeable);
88 if (mContext.getResources().getBoolean(R.bool.config_default_display_order_primary)) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/
AdtPrefs.java 192 mBuildForceResResfresh = mStore.getBoolean(PREFS_BUILD_RES_AUTO_REFRESH);
197 mStore.getBoolean(PREFS_BUILD_FORCE_ERROR_ON_NATIVELIB_IN_JAR);
202 mStore.getBoolean(PREFS_BUILD_SKIP_POST_COMPILE_ON_FILE_SAVE);
210 mFormatGuiXml = mStore.getBoolean(PREFS_FORMAT_GUI_XML);
218 mCustomXmlFormatter = mStore.getBoolean(PREFS_USE_CUSTOM_XML_FORMATTER);
226 mUseEclipseIndent = mStore.getBoolean(PREFS_USE_ECLIPSE_INDENT);
230 mRemoveEmptyLines = mStore.getBoolean(PREVS_REMOVE_EMPTY_LINES);
234 mOneAttributeOnFirstLine = mStore.getBoolean(PREFS_ONE_ATTR_PER_LINE);
248 mSpaceBeforeClose = mStore.getBoolean(PREFS_SPACE_BEFORE_CLOSE);
252 mFormatOnSave = mStore.getBoolean(PREFS_FORMAT_ON_SAVE)
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
TypedArrayTest.java 32 assertThat(typedArray.getBoolean(0, true), equalTo(true));
33 assertThat(typedArray.getBoolean(0, false), equalTo(false));
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DoNotDisturb.java 40 mDoNotDisturb = mPrefs.getBoolean(Prefs.DO_NOT_DISTURB_PREF, Prefs.DO_NOT_DISTURB_DEFAULT);
45 final boolean val = prefs.getBoolean(Prefs.DO_NOT_DISTURB_PREF,
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DoNotDisturbController.java 44 mDoNotDisturb = mPrefs.getBoolean(Prefs.DO_NOT_DISTURB_PREF, Prefs.DO_NOT_DISTURB_DEFAULT);
65 final boolean val = prefs.getBoolean(Prefs.DO_NOT_DISTURB_PREF,
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastConfigService.java 152 boolean enableEmergencyAlerts = prefs.getBoolean(
158 boolean enableChannel50Support = res.getBoolean(R.bool.show_brazil_settings) ||
162 prefs.getBoolean(CellBroadcastSettings.KEY_ENABLE_CHANNEL_50_ALERTS, true);
165 boolean enableEtwsTestAlerts = prefs.getBoolean(
168 boolean enableCmasExtremeAlerts = prefs.getBoolean(
171 boolean enableCmasSevereAlerts = prefs.getBoolean(
174 boolean enableCmasAmberAlerts = prefs.getBoolean(
177 boolean enableCmasTestAlerts = prefs.getBoolean(
  /packages/apps/Contacts/src/com/android/contacts/preference/
ContactsPreferenceActivity.java 61 return !context.getResources().getBoolean(R.bool.config_sort_order_user_changeable)
62 && !context.getResources().getBoolean(R.bool.config_display_order_user_changeable);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/
ResearchSettings.java 47 return prefs.getBoolean(PREF_RESEARCH_LOGGER_ENABLED_FLAG, false);
56 return prefs.getBoolean(PREF_RESEARCH_LOGGER_HAS_SEEN_SPLASH, false);
  /external/jmonkeyengine/engine/src/core/com/jme3/system/
AppSettings.java 267 put(key, prefs.getBoolean(key, (Boolean) defaultValue));
311 public boolean getBoolean(String key) {
596 return getBoolean("UseInput");
676 return getBoolean("VSync");
684 return getBoolean("Fullscreen");
692 return !getBoolean("DisableJoysticks");
708 return getBoolean("Stereo3D");
  /cts/tests/tests/app/src/android/app/cts/
TimePickerDialogTest.java 74 assertTrue(b.getBoolean(IS_24_HOUR));
84 assertFalse(b.getBoolean(IS_24_HOUR));
133 assertFalse(b2.getBoolean(IS_24_HOUR));
  /external/nist-sip/java/gov/nist/core/
Host.java 89 = Boolean.getBoolean("gov.nist.core.STRIP_ADDR_SCOPES");
99 = Boolean.getBoolean("gov.nist.core.STRIP_ADDR_SCOPES");
110 = Boolean.getBoolean("gov.nist.core.STRIP_ADDR_SCOPES");
  /development/samples/training/multiscreen/newsreader/src/com/example/android/newsreader/
ArticleActivity.java 51 if (getResources().getBoolean(R.bool.has_two_panes)) {
  /external/jmonkeyengine/engine/src/android/jme3test/android/
DemoAndroidHarness.java 36 if (bundle.getBoolean("VERBOSE"))
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowTypedArray.java 18 public boolean getBoolean(int index, boolean defValue) {
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/tester/android/content/
TestSharedPreferencesTest.java 45 assertTrue(anotherSharedPreferences.getBoolean("boolean", false));
73 assertTrue(anotherSharedPreferences.getBoolean("boolean", false));
94 assertTrue(anotherSharedPreferences.getBoolean("boolean", false));
116 assertFalse(anotherSharedPreferences.getBoolean("boolean", false));

Completed in 1007 milliseconds

1 2 3 4 5 6 7 8 91011>>