HomeSort by relevance Sort by last modified time
    Searched refs:buttons (Results 1 - 25 of 274) sorted by null

1 2 3 4 5 6 7 8 91011

  /frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
HierarchicalMove.java 32 Button[] buttons = new Button[6]; field in class:HierarchicalMove
45 buttons[0] = (Button) findViewById(R.id.button0);
46 buttons[1] = (Button) findViewById(R.id.button1);
47 buttons[2] = (Button) findViewById(R.id.button2);
48 buttons[3] = (Button) findViewById(R.id.button3);
49 buttons[4] = (Button) findViewById(R.id.button4);
50 buttons[5] = (Button) findViewById(R.id.button5);
52 // Move button0, then buttons 1/2 together, then buttons 3/4/5 sequentially:
67 move0.addTarget(buttons[0])
    [all...]
  /external/autotest/frontend/client/src/autotest/common/table/
RadioButtonSetFilter.java 15 private Vector<RadioButton> buttons; field in class:RadioButtonSetFilter
25 buttons = new Vector();
35 int formValue = buttons.size();
38 buttons.add(radioButton);
43 if (index < buttons.size())
45 buttons.get(index).setChecked(true);
53 return buttons.size();
  /developers/build/prebuilts/gradle/BasicGestureDetect/Application/src/main/java/com/example/android/basicgesturedetect/
GestureListener.java 120 touchTypeDescription += ", buttons pressed: " + getButtonsPressed(e);
140 * Returns a human-readable string listing all the stylus buttons that were pressed when the
145 String buttons = ""; local
148 buttons += " primary";
152 buttons += " secondary";
156 buttons += " tertiary";
160 buttons += " back";
164 buttons += " forward";
167 if (buttons.equals("")){
168 buttons = "none"
    [all...]
  /developers/samples/android/input/gestures/BasicGestureDetect/Application/src/main/java/com/example/android/basicgesturedetect/
GestureListener.java 120 touchTypeDescription += ", buttons pressed: " + getButtonsPressed(e);
140 * Returns a human-readable string listing all the stylus buttons that were pressed when the
145 String buttons = ""; local
148 buttons += " primary";
152 buttons += " secondary";
156 buttons += " tertiary";
160 buttons += " back";
164 buttons += " forward";
167 if (buttons.equals("")){
168 buttons = "none"
    [all...]
  /development/samples/browseable/BasicGestureDetect/src/com.example.android.basicgesturedetect/
GestureListener.java 120 touchTypeDescription += ", buttons pressed: " + getButtonsPressed(e);
140 * Returns a human-readable string listing all the stylus buttons that were pressed when the
145 String buttons = ""; local
148 buttons += " primary";
152 buttons += " secondary";
156 buttons += " tertiary";
160 buttons += " back";
164 buttons += " forward";
167 if (buttons.equals("")){
168 buttons = "none"
    [all...]
  /packages/apps/Dialer/java/com/android/incallui/incall/impl/
InCallButtonGridFragment.java 33 /** Fragment for the in call buttons (mute, speaker, ect.). */
39 private CheckableLabeledButton[] buttons = new CheckableLabeledButton[BUTTON_COUNT]; field in class:InCallButtonGridFragment
59 buttons[0] = ((CheckableLabeledButton) view.findViewById(R.id.incall_first_button));
60 buttons[1] = ((CheckableLabeledButton) view.findViewById(R.id.incall_second_button));
61 buttons[2] = ((CheckableLabeledButton) view.findViewById(R.id.incall_third_button));
62 buttons[3] = ((CheckableLabeledButton) view.findViewById(R.id.incall_fourth_button));
63 buttons[4] = ((CheckableLabeledButton) view.findViewById(R.id.incall_fifth_button));
64 buttons[5] = ((CheckableLabeledButton) view.findViewById(R.id.incall_sixth_button));
82 for (CheckableLabeledButton button : buttons) {
121 buttons[i].setVisibility(View.INVISIBLE)
    [all...]
  /external/lzma/CPP/Windows/Control/
ToolBar.h 20 // maybe it must be fixed for more than 1 buttons
35 bool AddButton(UINT numButtons, LPTBBUTTON buttons) { return LRESULTToBool(SendMsg(TB_ADDBUTTONS, numButtons, (LPARAM)buttons)); }
37 bool AddButtonW(UINT numButtons, LPTBBUTTON buttons) { return LRESULTToBool(SendMsg(TB_ADDBUTTONSW, numButtons, (LPARAM)buttons)); }
  /frameworks/native/services/vr/virtual_touchpad/
DvrVirtualTouchpadClient.cpp 39 int buttons) {
40 return FromC(client)->ButtonState(touchpad, buttons);
VirtualTouchpadClient.cpp 56 status_t ButtonState(int touchpad, int buttons) override {
60 return service_->buttonState(touchpad, buttons).transactionError();
VirtualTouchpadEvdev.h 23 status_t ButtonState(int touchpad, int buttons) override;
VirtualTouchpadService.h 25 binder::Status buttonState(int touchpad, int buttons) override;
  /frameworks/native/services/vr/virtual_touchpad/include/dvr/
virtual_touchpad_client.h 58 // @param buttons A union of MotionEvent BUTTON_* values.
62 int buttons);
  /frameworks/native/services/vr/virtual_touchpad/include/
VirtualTouchpad.h 56 // @param buttons A union of MotionEvent BUTTON_* values.
62 virtual status_t ButtonState(int touchpad, int buttons) = 0;
VirtualTouchpadClient.h 19 status_t ButtonState(int touchpad, int buttons) override;
  /external/autotest/frontend/client/src/autotest/afe/
AbortSynchronousDialog.java 55 Panel buttons = new HorizontalPanel(); local
56 buttons.add(abortAll);
58 buttons.add(abortAsynchronous);
60 buttons.add(cancel);
61 contents.add(buttons);
  /packages/experimental/KBars/app/src/main/java/js/kbars/
ToastActivity.java 27 LinearLayout buttons = new LinearLayout(this.mContext); local
28 buttons.setOrientation(1);
42 buttons.addView(btn);
45 setContentView(buttons);
46 this.mContent = buttons;
  /frameworks/support/recyclerview-selection/src/androidTest/java/androidx/recyclerview/selection/testing/
TestEvents.java 151 public Builder pressButton(@Button int... buttons) {
152 for (int button : buttons) {
161 public Builder releaseButton(@Button int... buttons) {
162 for (int button : buttons) {
251 int buttons = 0; local
253 buttons |= button;
269 buttons,
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
TestEvents.java 150 public Builder pressButton(@Button int... buttons) {
151 for (int button : buttons) {
160 public Builder releaseButton(@Button int... buttons) {
161 for (int button : buttons) {
253 int buttons = 0; local
255 buttons |= button;
271 buttons,
  /packages/apps/DocumentsUI/tests/unit/com/android/documentsui/selection/testing/
TestEvents.java 150 public Builder pressButton(@Button int... buttons) {
151 for (int button : buttons) {
160 public Builder releaseButton(@Button int... buttons) {
161 for (int button : buttons) {
253 int buttons = 0; local
255 buttons |= button;
271 buttons,
  /external/python/cpython2/Demo/tkinter/guido/
dialog.py 4 # optional bitmap, and any number of buttons.
34 # 3. Create a row of buttons at the bottom of the dialog.
37 buttons = []
41 buttons.append(b)
58 lambda e, b=buttons[default], v=var, i=default:
  /external/python/cpython2/Lib/lib-tk/
SimpleDialog.py 10 text='', buttons=[], default=None, cancel=None,
27 for num in range(len(buttons)):
28 s = buttons[num]
98 "the buttons below would have been glowing "
101 buttons=["Yes", "No", "Cancel"],
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
SimpleDialog.py 10 text='', buttons=[], default=None, cancel=None,
27 for num in range(len(buttons)):
28 s = buttons[num]
98 "the buttons below would have been glowing "
101 buttons=["Yes", "No", "Cancel"],
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
SimpleDialog.py 10 text='', buttons=[], default=None, cancel=None,
27 for num in range(len(buttons)):
28 s = buttons[num]
98 "the buttons below would have been glowing "
101 buttons=["Yes", "No", "Cancel"],
  /prebuilts/misc/darwin-x86_64/sdl2/include/SDL2/
SDL_messagebox.h 100 const SDL_MessageBoxButtonData *buttons; member in struct:__anon231
  /prebuilts/misc/windows/sdl2/i686-w64-mingw32/include/SDL2/
SDL_messagebox.h 100 const SDL_MessageBoxButtonData *buttons; member in struct:__anon340

Completed in 371 milliseconds

1 2 3 4 5 6 7 8 91011