Home
last modified time | relevance | path

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

/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowTextViewTest.java71 TestOnEditorActionListener actionListener = new TestOnEditorActionListener(); in shouldTriggerTheImeListener() local
72 textView.setOnEditorActionListener(actionListener); in shouldTriggerTheImeListener()
76 assertThat(actionListener.textView).isSameAs(textView); in shouldTriggerTheImeListener()
77 assertThat(actionListener.sentImeId).isEqualTo(EditorInfo.IME_ACTION_GO); in shouldTriggerTheImeListener()
82 TestOnEditorActionListener actionListener = new TestOnEditorActionListener(); in shouldCreateGetterForEditorActionListener() local
84 textView.setOnEditorActionListener(actionListener); in shouldCreateGetterForEditorActionListener()
86 assertThat(shadowOf(textView).getOnEditorActionListener()).isSameAs(actionListener); in shouldCreateGetterForEditorActionListener()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowAccessibilityNodeInfo.java179 private OnPerformActionListener actionListener; field in ShadowAccessibilityNodeInfo
990 return actionListener == null || actionListener.onPerformAccessibilityAction(action, arguments); in performAction()
1106 newShadow.actionListener = actionListener; in getClone()
1278 actionListener = listener; in setOnPerformActionListener()