Home
last modified time | relevance | path

Searched refs:getWindowId (Results 1 – 5 of 5) sorted by relevance

/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowView.java509 protected WindowId getWindowId() { in getWindowId() method in ShadowView
510 return WindowIdHelper.getWindowId(this); in getWindowId()
562 public static WindowId getWindowId(ShadowView shadowView) { in getWindowId() method in ShadowView.WindowIdHelper
572 return shadowView.directly().getWindowId(); in getWindowId()
DShadowAccessibilityRecord.java75 protected int getWindowId() { in getWindowId() method in ShadowAccessibilityRecord
DShadowAccessibilityNodeInfo.java961 protected int getWindowId() { in getWindowId() method in ShadowAccessibilityNodeInfo
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowViewTest.java846 assertThat(parent.getWindowId()).isNull(); in getWindowId_shouldReturnValidObjectWhenAttached()
847 assertThat(child.getWindowId()).isNull(); in getWindowId_shouldReturnValidObjectWhenAttached()
852 WindowId windowId = parent.getWindowId(); in getWindowId_shouldReturnValidObjectWhenAttached()
854 assertThat(child.getWindowId()).isSameInstanceAs(windowId); in getWindowId_shouldReturnValidObjectWhenAttached()
855 assertThat(child.getWindowId()).isEqualTo(windowId); // equals must work! in getWindowId_shouldReturnValidObjectWhenAttached()
859 assertThat(anotherChild.getWindowId()).isEqualTo(windowId); in getWindowId_shouldReturnValidObjectWhenAttached()
862 assertThat(anotherChild.getWindowId()).isNull(); in getWindowId_shouldReturnValidObjectWhenAttached()
DShadowAccessibilityEventTest.java92 assertThat(event.getWindowId()).isEqualTo(id); in setWindowId()