Home
last modified time | relevance | path

Searched refs:typeSideMap (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/java/android/view/
DInsetsAnimationControlImpl.java125 final SparseIntArray typeSideMap = new SparseIntArray(); in InsetsAnimationControlImpl() local
130 typeSideMap); in InsetsAnimationControlImpl()
135 typeSideMap.put(ITYPE_IME, ISIDE_BOTTOM); in InsetsAnimationControlImpl()
137 buildSideControlsMap(typeSideMap, mSideControlsMap, controls); in InsetsAnimationControlImpl()
366 @Nullable @InternalInsetsSide SparseIntArray typeSideMap) { in getInsetsFromState() argument
371 WINDOWING_MODE_UNDEFINED, typeSideMap).getInsets(mTypes); in getInsetsFromState()
377 @Nullable @InternalInsetsSide SparseIntArray typeSideMap) { in calculateInsets() argument
386 return getInsetsFromState(state, frame, typeSideMap); in calculateInsets()
484 private static void buildSideControlsMap(SparseIntArray typeSideMap, in buildSideControlsMap() argument
487 for (int i = typeSideMap.size() - 1; i >= 0; i--) { in buildSideControlsMap()
[all …]
DInsetsState.java202 @Nullable @InternalInsetsSide SparseIntArray typeSideMap) { in calculateInsets() argument
219 typeSideMap, typeVisibilityMap); in calculateInsets()
377 Insets[] typeInsetsMap, @Nullable @InternalInsetsSide SparseIntArray typeSideMap, in processSource() argument
382 processSourceAsPublicType(source, typeInsetsMap, typeSideMap, typeVisibilityMap, in processSource()
391 processSourceAsPublicType(source, typeInsetsMap, typeSideMap, typeVisibilityMap, in processSource()
397 @InternalInsetsSide @Nullable SparseIntArray typeSideMap, in processSourceAsPublicType() argument
411 if (typeSideMap != null) { in processSourceAsPublicType()
414 typeSideMap.put(source.getType(), insetSide); in processSourceAsPublicType()
/frameworks/base/core/tests/coretests/src/android/view/
DInsetsStateTest.java88 SparseIntArray typeSideMap = new SparseIntArray(); in testCalculateInsets() local
91 typeSideMap); in testCalculateInsets()
94 assertEquals(ISIDE_TOP, typeSideMap.get(ITYPE_STATUS_BAR)); in testCalculateInsets()
95 assertEquals(ISIDE_BOTTOM, typeSideMap.get(ITYPE_IME)); in testCalculateInsets()