Home | History | Annotate | Download | only in testing

Lines Matching defs:Button

89     public @interface Button {}
149 * Adds one or more button press attributes.
151 public Builder pressButton(@Button int... buttons) {
152 for (int button : buttons) {
153 mState.mButtons.add(button);
159 * Removes one or more button press attributes.
161 public Builder releaseButton(@Button int... buttons) {
162 for (int button : buttons) {
163 mState.mButtons.remove(button);
181 public Builder releaseKey(@Button int... keys) {
252 for (Integer button : mState.mButtons) {
253 buttons |= button;