Home
last modified time | relevance | path

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

/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowAccessibilityWindowInfo.java136 final ShadowAccessibilityWindowInfo otherShadow = Shadow.extract(window); in equals() local
138 boolean areEqual = (type == otherShadow.getType()); in equals()
139 areEqual &= (parent == otherShadow.getParent()); in equals()
140 areEqual &= (rootNode == otherShadow.getRoot()); in equals()
141 areEqual &= (layer == otherShadow.getLayer()); in equals()
142 areEqual &= (id == otherShadow.getId()); in equals()
143 areEqual &= (title == otherShadow.getTitle()); in equals()
144 areEqual &= (isAccessibilityFocused == otherShadow.isAccessibilityFocused()); in equals()
145 areEqual &= (isActive == otherShadow.isActive()); in equals()
146 areEqual &= (isFocused == otherShadow.isFocused()); in equals()
[all …]
DShadowAccessibilityNodeInfo.java1005 final ShadowAccessibilityNodeInfo otherShadow = Shadow.extract(info); in equals() local
1008 return this.view == otherShadow.view; in equals()
1011 return this.mOriginNodeId == otherShadow.mOriginNodeId; in equals()