Home
last modified time | relevance | path

Searched refs:mBundle (Results 1 – 4 of 4) sorted by relevance

/cts/tests/tests/os/src/android/os/cts/
DBundleTest.java53 private Bundle mBundle; field in BundleTest
59 mBundle = new Bundle(); in setUp()
82 mBundle.putBoolean("android", true); in testEmptyStream()
84 mBundle.readFromParcel(p); in testEmptyStream()
85 assertTrue(mBundle.isEmpty()); in testEmptyStream()
90 mBundle.putBoolean("android", true); in testClear()
91 mBundle.putBoolean(KEY, true); in testClear()
92 assertFalse(mBundle.isEmpty()); in testClear()
93 mBundle.clear(); in testClear()
94 assertTrue(mBundle.isEmpty()); in testClear()
[all …]
/cts/common/device-side/device-info/src/com/android/compatibility/common/deviceinfo/
DDeviceInfoInstrument.java44 private Bundle mBundle = new Bundle(); field in DeviceInfoInstrument
74 finish(Activity.RESULT_CANCELED, mBundle); in onStart()
77 finish(Activity.RESULT_OK, mBundle); in onStart()
126 mBundle.putString(className, activity.getResultFilePath()); in runActivity()
128 mBundle.putString(className, errorMessage); in runActivity()
/cts/tests/app/src/android/app/cts/
DInstrumentationTestActivity.java54 private Bundle mBundle; field in InstrumentationTestActivity
143 mBundle = outState; in onSaveInstanceState()
340 return mBundle; in getBundle()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/tv/
DMockTvInputService.java423 sResumeAfterPauseCallback.mBundle.putBoolean(PAUSE_CALLED, true); in onTimeShiftPause()
434 && sResumeAfterPauseCallback.mBundle.getBoolean(PAUSE_CALLED)) { in onTimeShiftResume()
488 private final Bundle mBundle = new Bundle(); field in MockTvInputService.Callback
500 return mBundle; in getBundle()