Home | History | Annotate | Download | only in accessibility

Lines Matching refs:mActions

633     private ArrayList<AccessibilityAction> mActions;
963 if (mActions == null) {
967 return mActions;
996 if (mActions == null) {
1000 final int actionSize = mActions.size();
1002 int actionId = mActions.get(i).getId();
1042 if (mActions == null) {
1043 mActions = new ArrayList<>();
1046 mActions.remove(action);
1047 mActions.add(action);
1115 if (mActions == null || action == null) {
1119 return mActions.remove(action);
2761 if (mActions != null && !mActions.isEmpty()) {
2762 final int actionCount = mActions.size();
2767 AccessibilityAction action = mActions.get(i);
2775 AccessibilityAction action = mActions.get(i);
2870 final ArrayList<AccessibilityAction> otherActions = other.mActions;
2872 if (mActions == null) {
2873 mActions = new ArrayList(otherActions);
2875 mActions.clear();
2876 mActions.addAll(other.mActions);
3043 if (mActions != null) {
3044 mActions.clear();
3285 builder.append("; actions: ").append(mActions);