Home
last modified time | relevance | path

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

/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowAccessibilityNodeInfo.java391 public boolean isPasteable() { in isPasteable() method in ShadowAccessibilityNodeInfo
545 public void setPasteable(boolean isPasteable) { in setPasteable() argument
546 propertyFlags = (propertyFlags & ~PASTEABLE_MASK) | (isPasteable ? PASTEABLE_MASK : 0); in setPasteable()
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowAccessibilityNodeInfoTest.java105 assertThat(shadow.isPasteable()).isEqualTo(false); in shouldRecordFlagsProperly()