Searched defs:getBoolean (Results 1 - 8 of 8) sorted by relevance

/packages/experimental/AndroidVendorSecurityTool/src/com/android/vending/sectool/v1/
H A DGservices.java165 public static boolean getBoolean(ContentResolver cr, String key, boolean defValue) { method in class:Gservices
H A DGservicesValue.java56 return sGservicesReader.getBoolean(mKey, mDefaultValue);
99 public Boolean getBoolean(String key, Boolean defaultValue); method in interface:GservicesValue.GservicesReader
113 public Boolean getBoolean(String key, Boolean defaultValue) { method in class:GservicesValue.GservicesReaderImpl
114 return Gservices.getBoolean(mContentResolver, key, defaultValue);
136 public Boolean getBoolean(String key, Boolean defaultValue) { return defaultValue; } method in class:GservicesValue.GservicesReaderForTests
/packages/apps/Contacts/tests/src/com/android/contacts/tests/mocks/
H A DMockSharedPreferences.java48 public boolean getBoolean(String key, boolean defValue) { method in class:MockSharedPreferences
/packages/apps/Email/tests/src/com/android/email/
H A DMockSharedPreferences.java50 public boolean getBoolean(String key, boolean defValue) { method in class:MockSharedPreferences
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A DKeyStyles.java43 public boolean getBoolean(TypedArray a, int index, boolean defaultValue); method in interface:KeyStyles.KeyStyle
72 public boolean getBoolean(TypedArray a, int index, boolean defaultValue) { method in class:KeyStyles.EmptyKeyStyle
73 return a.getBoolean(index, defaultValue);
155 public boolean getBoolean(TypedArray a, int index, boolean defaultValue) { method in class:KeyStyles.DeclaredKeyStyle
157 return super.getBoolean(a, index, (value != null) ? value : defaultValue);
199 mAttributes.put(index, a.getBoolean(index, false));
/packages/apps/Camera/src/com/android/camera/
H A DComboPreferences.java116 public boolean getBoolean(String key, boolean defValue) { method in class:ComboPreferences
118 return mPrefGlobal.getBoolean(key, defValue);
120 return mPrefLocal.getBoolean(key, defValue);
/packages/apps/Email/src/com/android/email/
H A DPreferences.java122 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) { method in class:Preferences
342 return mSharedPreferences.getBoolean(makeKe
[all...]
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
H A DXmlKeyboardLoader.java313 repeat = getBoolean(mXrp, XMLATTR_KEY_REPEAT, defAttr.repeat);
314 balloon = getBoolean(mXrp, XMLATTR_KEY_BALLOON, defAttr.balloon);
476 boolean cacheFlag = getBoolean(xrp,
478 boolean stickyFlag = getBoolean(xrp,
481 boolean isQwerty = getBoolean(xrp, XMLATTR_QWERTY,
483 boolean isQwertyUpperCase = getBoolean(xrp,
728 boolean repeat = getBoolean(xrp, XMLATTR_KEY_REPEAT, attrKey.repeat);
729 boolean balloon = getBoolean(xrp, XMLATTR_KEY_BALLOON, attrKey.balloon);
817 private boolean getBoolean(XmlResourceParser xrp, String name, method in class:XmlKeyboardLoader

Completed in 340 milliseconds