Searched refs:mBundle (Results 1 – 5 of 5) sorted by relevance
/cts/tests/tests/os/src/android/os/cts/ |
D | BundleTest.java | 56 private Bundle mBundle; field in BundleTest 62 mBundle = new Bundle(); in setUp() 85 mBundle.putBoolean("android", true); in testEmptyStream() 87 mBundle.readFromParcel(p); in testEmptyStream() 88 assertTrue(mBundle.isEmpty()); in testEmptyStream() 93 mBundle.putBoolean("android", true); in testClear() 94 mBundle.putBoolean(KEY, true); in testClear() 95 assertFalse(mBundle.isEmpty()); in testClear() 96 mBundle.clear(); in testClear() 97 assertTrue(mBundle.isEmpty()); in testClear() [all …]
|
/cts/tests/inputmethod/mockime/src/com/android/cts/mockime/ |
D | ImeSettings.java | 45 private final PersistableBundle mBundle; field in ImeSettings 49 mBundle = parcel.readPersistableBundle(); in ImeSettings() 58 return mBundle.getBoolean(FULLSCREEN_MODE_ALLOWED, defaultValue); in fullscreenModeAllowed() 63 return mBundle.getInt(BACKGROUND_COLOR_KEY, defaultColor); in getBackgroundColor() 67 return mBundle.keySet().contains(NAVIGATION_BAR_COLOR_KEY); in hasNavigationBarColor() 72 return mBundle.getInt(NAVIGATION_BAR_COLOR_KEY); in getNavigationBarColor() 76 return mBundle.getInt(INPUT_VIEW_HEIGHT_WITHOUT_SYSTEM_WINDOW_INSET, defaultHeight); in getInputViewHeightWithoutSystemWindowInset() 80 return mBundle.getInt(WINDOW_FLAGS, defaultFlags); in getWindowFlags() 84 return mBundle.getInt(WINDOW_FLAGS_MASK, defaultFlags); in getWindowFlagsMask() 88 return mBundle.getInt(INPUT_VIEW_SYSTEM_UI_VISIBILITY, defaultFlags); in getInputViewSystemUiVisibility() [all …]
|
/cts/tests/tests/text/src/android/text/style/cts/ |
D | TtsSpanTest.java | 34 private PersistableBundle mBundle; field in TtsSpanTest 38 mBundle = new PersistableBundle(); in setup() 39 mBundle.putString("argument.one", "value.one"); in setup() 40 mBundle.putString("argument.two", "value.two"); in setup() 41 mBundle.putLong("argument.three", 3); in setup() 42 mBundle.putLong("argument.four", 4); in setup() 47 TtsSpan t = new TtsSpan("test.type.one", mBundle); in testGetArgs() 58 TtsSpan t = new TtsSpan("test.type.two", mBundle); in testGetType() 64 TtsSpan span = new TtsSpan("test.type.three", mBundle); in testDescribeContents() 70 TtsSpan span = new TtsSpan("test.type.four", mBundle); in testGetSpanTypeId() [all …]
|
/cts/tests/app/app/src/android/app/stubs/ |
D | InstrumentationTestActivity.java | 56 private Bundle mBundle; field in InstrumentationTestActivity 148 mBundle = outState; in onSaveInstanceState() 345 return mBundle; in getBundle()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/tv/ |
D | MockTvInputService.java | 445 sResumeAfterPauseCallback.mBundle.putBoolean(PAUSE_CALLED, true); in onTimeShiftPause() 456 && sResumeAfterPauseCallback.mBundle.getBoolean(PAUSE_CALLED)) { in onTimeShiftResume() 534 private final Bundle mBundle = new Bundle(); field in MockTvInputService.Callback 546 return mBundle; in getBundle()
|