Lines Matching refs:focus
50 AccessibilityNodeInfo focus = root.findFocus(
52 if (focus != null) {
53 if ((focus.getActions() & 0x00004000) /* COPY*/ != 0) {
54 final boolean performed = focus.performAction(0x00004000);
57 focus.recycle();
66 AccessibilityNodeInfo focus = root.findFocus(
68 if (focus != null) {
69 if ((focus.getActions() & 0x00008000) /* PASTE*/ != 0) {
70 final boolean performed = focus.performAction(0x00008000);
73 focus.recycle();
82 AccessibilityNodeInfo focus = root.findFocus(
84 if (focus != null) {
85 if ((focus.getActions() & 0x00010000) /* CUT*/ != 0) {
86 final boolean performed = focus.performAction(0x00010000);
89 focus.recycle();
98 AccessibilityNodeInfo focus = root.findFocus(
100 if (focus != null) {
101 if ((focus.getActions() & 0x00020000) /* SELECT ALL*/ != 0) {
102 final boolean performed = focus.performAction(0x00020000);
105 focus.recycle();