Home
last modified time | relevance | path

Searched refs:parcelables (Results 1 – 2 of 2) sorted by relevance

/cts/apps/CtsVerifier/src/com/android/cts/verifier/
DIntentDrivenTestActivity.java65 final Parcelable[] parcelables = intent.getParcelableArrayExtra(EXTRA_BUTTONS); in onCreate() local
66 mButtonInfos = new ButtonInfo[parcelables.length]; in onCreate()
67 for (int i = 0; i < parcelables.length; i++) { in onCreate()
68 final ButtonInfo buttonInfo = (ButtonInfo) parcelables[i]; in onCreate()
190 final Parcelable[] parcelables = source.readParcelableArray(null); in ButtonInfo() local
191 if (parcelables != null) { in ButtonInfo()
192 mIntents = new Intent[parcelables.length]; in ButtonInfo()
193 … for (int i = 0, parcelablesLength = parcelables.length; i < parcelablesLength; i++) { in ButtonInfo()
194 mIntents[i] = (Intent) parcelables[i]; in ButtonInfo()
/cts/tests/accessibilityservice/src/android/accessibilityservice/cts/
DAccessibilityTextActionTest.java202 final Parcelable[] parcelables = text.getExtras() in testTextLocations_textViewShouldProvideWhenRequested() local
204 final RectF[] locations = Arrays.copyOf(parcelables, parcelables.length, RectF[].class); in testTextLocations_textViewShouldProvideWhenRequested()
232 Parcelable[] parcelables = text.getExtras() in testTextLocations_textOutsideOfViewBounds_locationsShouldBeNull() local
235 parcelables, parcelables.length, RectF[].class); in testTextLocations_textOutsideOfViewBounds_locationsShouldBeNull()
259 parcelables = text.getExtras() in testTextLocations_textOutsideOfViewBounds_locationsShouldBeNull()
262 parcelables, parcelables.length, RectF[].class); in testTextLocations_textOutsideOfViewBounds_locationsShouldBeNull()