Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/wm/
DWindowContainer.java167 SparseArray<InsetsSource> mLocalInsetsSources = null; field in WindowContainer
396 createMergedSparseArray(localInsetsSourcesFromParent, mLocalInsetsSources); in updateAboveInsetsState()
456 if (mLocalInsetsSources == null) { in addLocalInsetsFrameProvider()
457 mLocalInsetsSources = new SparseArray<>(); in addLocalInsetsFrameProvider()
459 if (mLocalInsetsSources.get(id) != null) { in addLocalInsetsFrameProvider()
469 mLocalInsetsSources.put(id, source); in addLocalInsetsFrameProvider()
534 if (mLocalInsetsSources == null) { in removeLocalInsetsSource()
537 if (mLocalInsetsSources.removeReturnOld(id) == null) { in removeLocalInsetsSource()
3634 if (mLocalInsetsSources != null && mLocalInsetsSources.size() != 0) { in dump()
3635 pw.println(prefix + mLocalInsetsSources.size() + " LocalInsetsSources"); in dump()
[all …]
DWindowState.java4573 createMergedSparseArray(localInsetsSourcesFromParent, mLocalInsetsSources); in updateAboveInsetsState()
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
DWindowContainerTests.java985 assertTrue(task.mLocalInsetsSources.size() == 1); in testOnDisplayChanged()
1003 assertTrue(task.mLocalInsetsSources.size() == 1); in testOnDisplayChanged_cleanupChanging()
1666 if (container.mLocalInsetsSources == null) { in hasLocalSource()
1669 return container.mLocalInsetsSources.contains(sourceId); in hasLocalSource()
DWindowOrganizerTests.java910 assertThat(navigationBarInsetsReceiverTask.mLocalInsetsSources in testAddInsetsSource()
936 assertArrayEquals(boundingRects, navigationBarInsetsReceiverTask.mLocalInsetsSources in testAddInsetsSource_withBoundingRects()
966 assertThat(navigationBarInsetsReceiverTask.mLocalInsetsSources.size()).isEqualTo(0); in testRemoveInsetsSource()