HomeSort by relevance Sort by last modified time
    Searched refs:getBoolean (Results 226 - 250 of 970) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/support/v7/cardview/src/android/support/v7/widget/
CardView.java 209 mCompatPadding = a.getBoolean(R.styleable.CardView_cardUseCompatPadding, false);
210 mPreventCornerOverlap = a.getBoolean(R.styleable.CardView_cardPreventCornerOverlap, true);
  /libcore/json/src/test/java/org/json/
SelfUseTest.java 136 object.getBoolean("foo");
183 array.getBoolean(0);
JSONArrayTest.java 40 array.getBoolean(0);
119 assertEquals(true, other.getBoolean(0));
122 assertEquals(false, other.getBoolean(3));
130 array.getBoolean(0);
271 assertEquals(true, array.getBoolean(0));
  /packages/apps/DeskClock/src/com/android/deskclock/
CircleTimerView.java 237 mPaused = prefs.getBoolean(key + PREF_CTV_PAUSED, false);
243 mTimerMode = prefs.getBoolean(key + PREF_CTV_TIMER_MODE, false);
  /packages/apps/Email/src/com/android/email/activity/setup/
SetupDataFragment.java 94 mIncomingCredLoaded = savedInstanceState.getBoolean(SAVESTATE_INCOMING_LOADED);
95 mOutgoingCredLoaded = savedInstanceState.getBoolean(SAVESTATE_OUTGOING_LOADED);
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherAppState.java 95 if (sContext.getResources().getBoolean(R.bool.debug_memory_enabled)) {
245 return res.getBoolean(R.bool.is_large_tablet);
  /packages/apps/Mms/src/com/android/mms/transaction/
MmsMessageSender.java 141 boolean dr = prefs.getBoolean(MessagingPreferenceActivity.MMS_DELIVERY_REPORT_MODE,
146 boolean rr = prefs.getBoolean(MessagingPreferenceActivity.READ_REPORT_MODE,
  /packages/apps/Mms/src/com/android/mms/util/
DownloadManager.java 160 boolean autoDownload = prefs.getBoolean(
168 boolean alwaysAuto = prefs.getBoolean(
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoTouchListener.java 62 mEnableFling = resources.getBoolean(R.bool.enable_fling);
63 mManualImageRotation = resources.getBoolean(R.bool.enable_manual_image_rotation);
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/preferences/
LogCatPreferencePage.java 106 .getBoolean(PreferenceInitializer.ATTR_SWITCH_PERSPECTIVE), getFieldEditorParent());
128 getPreferenceStore().getBoolean(LogCatMonitor.AUTO_MONITOR_PREFKEY),
  /external/dexmaker/src/test/java/com/google/dexmaker/stock/
ProxyBuilderTest.java 171 public boolean getBoolean() { return true; }
186 assertEquals(false, proxy.getBoolean());
208 public boolean getBoolean(boolean input) { return input; }
231 assertEquals(false, proxy.getBoolean(false));
232 assertEquals(true, proxy.getBoolean(true));
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
PerformancesView.java 192 boolean connected = this.preferences.getBoolean(IPerformancesConstants.PRE_DATABASE_CONNECTION, IPerformancesConstants.DEFAULT_DATABASE_CONNECTION);
516 // boolean connected = this.preferences.getBoolean(IPerformancesConstants.PRE_DATABASE_CONNECTION, IPerformancesConstants.DEFAULT_DATABASE_CONNECTION);
523 // boolean connected = this.preferences.getBoolean(IPerformancesConstants.PRE_DATABASE_CONNECTION, IPerformancesConstants.DEFAULT_DATABASE_CONNECTION);
604 Boolean filterBaselinesState = this.viewState.getBoolean(IPerformancesConstants.PRE_FILTER_BASELINE_BUILDS);
613 boolean checked = this.preferences.getBoolean(IPerformancesConstants.PRE_FILTER_NIGHTLY_BUILDS, IPerformancesConstants.DEFAULT_FILTER_NIGHTLY_BUILDS);
620 checked = this.preferences.getBoolean(IPerformancesConstants.PRE_FILTER_OLD_BUILDS, IPerformancesConstants.DEFAULT_FILTER_OLD_BUILDS);
627 checked = this.preferences.getBoolean(IPerformancesConstants.PRE_FILTER_LAST_BUILDS, IPerformancesConstants.DEFAULT_FILTER_LAST_BUILDS);
680 boolean dbConnected = this.preferences.getBoolean(IPerformancesConstants.PRE_DATABASE_CONNECTION, IPerformancesConstants.DEFAULT_DATABASE_CONNECTION);
  /frameworks/base/graphics/java/android/graphics/drawable/
AnimatedStateListDrawable.java 415 state.setVariablePadding(a.getBoolean(
417 state.setConstantSize(a.getBoolean(
424 setDither(a.getBoolean(
426 setAutoMirrored(a.getBoolean(
470 final boolean reversible = a.getBoolean(
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
OpenWnnJAJP.java     [all...]
  /frameworks/base/services/core/java/com/android/server/location/
GpsLocationProvider.java     [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
ContactEditorFragment.java 482 && mIntentExtras.getBoolean(INTENT_EXTRA_NEW_LOCAL_PROFILE);
484 && mIntentExtras.getBoolean(INTENT_EXTRA_DISABLE_DELETE_MENU_OPTION);
513 mContactWritableForJoin = savedState.getBoolean(KEY_CONTACT_WRITABLE_FOR_JOIN);
515 mEnabled = savedState.getBoolean(KEY_ENABLED);
517 mNewLocalProfile = savedState.getBoolean(KEY_NEW_LOCAL_PROFILE);
518 mDisableDeleteMenuOption = savedState.getBoolean(KEY_DISABLE_DELETE_MENU_OPTION);
519 mIsUserProfile = savedState.getBoolean(KEY_IS_USER_PROFILE);
521 mIsEdit = savedState.getBoolean(KEY_IS_EDIT);
522 mHasNewContact = savedState.getBoolean(KEY_HAS_NEW_CONTACT);
523 mNewContactDataReady = savedState.getBoolean(KEY_NEW_CONTACT_READY)
    [all...]
  /cts/tests/tests/accounts/src/android/accounts/cts/
AccountManagerTest.java 128 assertTrue(removeAccount(am, ACCOUNT, mActivity, null /* callback */).getBoolean(
130 assertTrue(removeAccount(am, ACCOUNT_SAME_TYPE, mActivity, null /* callback */).getBoolean(
420 assertTrue(removeAccount(am, ACCOUNT, mActivity, null /* callback */).getBoolean(
452 .getBoolean(AccountManager.KEY_BOOLEAN_RESULT));
549 assertTrue(removeAccount(am, renamedAccount, mActivity, null /* callback */).getBoolean(
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/prefs/
AbstractPreferencesTest.java 241 pref.getBoolean(null, false);
248 assertFalse(pref.getBoolean("testGetBooleanKey", true));
249 assertTrue(pref.getBoolean("testGetBooleanKey2", true));
631 assertFalse(pref.getBoolean("testPutBooleanKey", true));
    [all...]
  /art/test/100-reflect2/src/
Main.java 34 System.out.println(f.getBoolean(null));
68 System.out.println(f.getBoolean(null));
103 System.out.println(f.getBoolean(null));
  /external/javassist/src/test/test/javassist/convert/
ArrayAccessReplaceTest.java 46 assertEquals(value, simple.getBoolean(i));
246 public boolean getBoolean(int pos);
297 public boolean getBoolean(int pos) {
  /packages/apps/Settings/src/com/android/settings/
DeviceInfoSettings.java 180 Context.MODE_PRIVATE).getBoolean(DevelopmentSettings.PREF_SHOW,
262 if (!getResources().getBoolean(resId)) {
460 if (!context.getResources().getBoolean(
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
MailboxSelectionActivity.java 173 mCreateShortcut = icicle.getBoolean(CREATE_SHORTCUT_KEY);
176 mConfigureWidget = icicle.getBoolean(CREATE_WIDGET_KEY);
182 mWaitingForAddAccountResult = icicle.getBoolean(WAITING_FOR_ADD_ACCOUNT_RESULT_KEY);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/
ByodHelperActivity.java 142 setAllowNonMarket(mOriginalSettings.getBoolean(INSTALL_NON_MARKET_APPS));
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/
NdefPushReceiverActivity.java 140 boolean isMatch = args.getBoolean(IS_MATCH_ARG);
  /cts/tests/tests/content/src/android/content/cts/
ContextTest.java 96 assertTrue(attrArray.getBoolean(0, false));

Completed in 1314 milliseconds

1 2 3 4 5 6 7 8 91011>>