Searched refs:mBundle (Results 1 – 6 of 6) 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 | 52 private final PersistableBundle mBundle; field in ImeSettings 57 mBundle = bundle.getParcelable(DATA_KEY); in ImeSettings() 71 return mBundle.getBoolean(FULLSCREEN_MODE_ALLOWED, defaultValue); in fullscreenModeAllowed() 76 return mBundle.getInt(BACKGROUND_COLOR_KEY, defaultColor); in getBackgroundColor() 80 return mBundle.keySet().contains(NAVIGATION_BAR_COLOR_KEY); in hasNavigationBarColor() 85 return mBundle.getInt(NAVIGATION_BAR_COLOR_KEY); in getNavigationBarColor() 89 return mBundle.getInt(INPUT_VIEW_HEIGHT_WITHOUT_SYSTEM_WINDOW_INSET, defaultHeight); in getInputViewHeightWithoutSystemWindowInset() 93 return mBundle.getInt(WINDOW_FLAGS, defaultFlags); in getWindowFlags() 97 return mBundle.getInt(WINDOW_FLAGS_MASK, defaultFlags); in getWindowFlagsMask() 101 return mBundle.getInt(INPUT_VIEW_SYSTEM_UI_VISIBILITY, defaultFlags); in getInputViewSystemUiVisibility() [all …]
|
/cts/tests/tests/assist/src/android/assist/cts/ |
D | AssistantContentViewTest.java | 31 private Bundle mBundle; field in AssistantContentViewTest 42 mBundle = null; in tearDown() 62 int height = mBundle.getInt(Utils.EXTRA_CONTENT_VIEW_HEIGHT, 0); in testAssistantContentViewDimens() 63 int width = mBundle.getInt(Utils.EXTRA_CONTENT_VIEW_WIDTH, 0); in testAssistantContentViewDimens() 64 Point displayPoint = mBundle.getParcelable(Utils.EXTRA_DISPLAY_POINT); in testAssistantContentViewDimens() 77 mBundle = bundle; in onAction()
|
/cts/tests/tests/text/src/android/text/style/cts/ |
D | TtsSpanTest.java | 35 private PersistableBundle mBundle; field in TtsSpanTest 39 mBundle = new PersistableBundle(); in setup() 40 mBundle.putString("argument.one", "value.one"); in setup() 41 mBundle.putString("argument.two", "value.two"); in setup() 42 mBundle.putLong("argument.three", 3); in setup() 43 mBundle.putLong("argument.four", 4); in setup() 48 TtsSpan t = new TtsSpan("test.type.one", mBundle); in testGetArgs() 59 TtsSpan t = new TtsSpan("test.type.two", mBundle); in testGetType() 65 TtsSpan span = new TtsSpan("test.type.three", mBundle); in testDescribeContents() 71 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()
|