Home | History | Annotate | Download | only in testing

Lines Matching defs:Button

88     public @interface Button {}
148 * Adds one or more button press attributes.
150 public Builder pressButton(@Button int... buttons) {
151 for (int button : buttons) {
152 mState.mButtons.add(button);
158 * Removes one or more button press attributes.
160 public Builder releaseButton(@Button int... buttons) {
161 for (int button : buttons) {
162 mState.mButtons.remove(button);
180 public Builder releaseKey(@Button int... keys) {
254 for (Integer button : mState.mButtons) {
255 buttons |= button;