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

12 3 4 5 6 7 8 91011

  /prebuilts/misc/windows/sdl2/include/
SDL_messagebox.h 100 const SDL_MessageBoxButtonData *buttons; member in struct:__anon419
  /prebuilts/misc/windows/sdl2/x86_64-w64-mingw32/include/SDL2/
SDL_messagebox.h 100 const SDL_MessageBoxButtonData *buttons; member in struct:__anon513
  /prebuilts/python/darwin-x86/2.7.5/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/python/linux-x86/2.7.5/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"],
  /external/autotest/client/cros/
semiauto_framework.py 58 def set_tab_with_buttons(self, html, buttons=['OK']):
59 """Replace the body of self._tab with provided html and buttons.
62 @param buttons: the titles of some number of buttons to add to the
68 for title in buttons:
  /prebuilts/misc/windows/sdl2/test/
testmessage.c 35 const SDL_MessageBoxButtonData buttons[] = { local
53 buttons,
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
IntentDrivenTestActivity.java 22 * text view containing instructions and one or more buttons that trigger intents.
37 public static final String EXTRA_BUTTONS = "buttons";
64 final ViewGroup buttons = (ViewGroup) findViewById(R.id.buttons); local
71 buttons.addView(button);
139 public TestInfo(String testId, int title, int infoText, ButtonInfo... buttons) {
141 * up to 2 buttons and won't render well with more buttons on small screen devices.
142 * If you need more than 2 buttons, please change the layout so it can properly render
145 if (buttons.length > 2)
    [all...]
  /frameworks/native/services/vr/virtual_touchpad/
VirtualTouchpadEvdev.cpp 141 int VirtualTouchpadEvdev::ButtonState(int touchpad_id, int buttons) {
146 const int changes = touchpad.last_motion_event_buttons ^ buttons;
150 if (buttons & ~AMOTION_EVENT_BUTTON_BACK) {
154 buttons);
161 touchpad.injector->SendKey(BTN_BACK, (buttons & AMOTION_EVENT_BUTTON_BACK)
166 touchpad.last_motion_event_buttons = buttons;
VirtualTouchpadService.cpp 80 binder::Status VirtualTouchpadService::buttonState(int touchpad, int buttons) {
84 if (const status_t error = touchpad_->ButtonState(touchpad, buttons)) {
  /packages/apps/Dialer/java/com/android/dialer/voicemail/listui/error/
VoicemailErrorAlert.java 147 * Attach actions to buttons until all buttons are assigned. If there are not enough actions the
148 * rest of the buttons will be removed. If there are more actions then buttons the extra actions
153 TextView[] buttons = new TextView[] {primaryAction, secondaryAction}; local
155 for (int i = 0; i < buttons.length; i++) {
161 buttons[i].setVisibility(View.GONE);
163 button = buttons[i];
170 buttons[i].setVisibility(View.GONE);
  /packages/apps/Launcher3/src/com/android/launcher3/
DropTargetBar.java 148 for (ButtonDropTarget buttons : mDropTargets) {
149 if (buttons.getVisibility() != GONE) {
150 textVisible = textVisible && !buttons.isTextTruncated(availableWidth);
199 for (ButtonDropTarget buttons : mDropTargets) {
200 if (buttons.getVisibility() != GONE) {
  /packages/apps/Dialer/java/com/android/incallui/incall/impl/
MappedButtonConfig.java 89 List<Integer> buttons = new ArrayList<>(); local
92 buttons.add(entry.getKey());
95 return buttons;
163 * Returns an integer used to determine which button is chosen for a slot when multiple buttons
170 * Returns an integer used to determine the order in which buttons that weren't chosen for their
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/usb/mtp/
MtpHostTestActivity.java 391 private final int[] buttons;
395 int[] buttons) {
401 this.buttons = buttons != null ? buttons : new int[0];
402 for (final int id : this.buttons) {
410 for (final int id : buttons) {
417 for (final int id : buttons) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/properties/
LibraryProperties.java 157 Composite buttons = new Composite(mTop, SWT.NONE); local
158 buttons.setLayout(new GridLayout());
159 buttons.setLayoutData(new GridData(GridData.FILL_VERTICAL));
163 mAddButton = new Button(buttons, SWT.PUSH | SWT.FLAT);
183 mRemoveButton = new Button(buttons, SWT.PUSH | SWT.FLAT);
199 Label l = new Label(buttons, SWT.SEPARATOR | SWT.HORIZONTAL);
202 mUpButton = new Button(buttons, SWT.PUSH | SWT.FLAT);
222 mDownButton = new Button(buttons, SWT.PUSH | SWT.FLAT);
  /external/python/cpython2/Lib/idlelib/idle_test/
test_searchdialogbase.py 133 buttons = frame.pack_slaves()
134 for spec, button in zip(others, buttons):
141 buttons[val].select()
143 buttons[1-val].select()
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/colorpicker/
ColorPickerDialog.java 111 void toggleClick(ToggleButton v, int[] buttons, boolean isChecked) {
117 for (int i = 0; i < buttons.length; i++) {
118 if (id != buttons[i]) {
119 ToggleButton b = (ToggleButton) findViewById(buttons[i]);
  /external/python/cpython2/Tools/audiopy/
audiopy 98 buttons = []
118 buttons.append(btn)
131 buttons.append(btn)
144 buttons.append(btn)
159 buttons.append(btn)
180 buttons.append(btn)
194 buttons.append(btn)
208 buttons.append(btn)
212 for b in buttons:
216 for b in buttons
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/ddms/
StaticPortConfigDialog.java 139 // center part with the list on the left and the buttons
163 // right part: buttons
164 Composite buttons = new Composite(main, SWT.NONE); local
165 buttons.setLayoutData(new GridData(GridData.FILL_VERTICAL));
166 buttons.setLayout(new GridLayout(1, true));
168 Button newButton = new Button(buttons, SWT.NONE);
187 final Button editButton = new Button(buttons, SWT.NONE);
211 final Button deleteButton = new Button(buttons, SWT.NONE);
  /bionic/libc/kernel/uapi/linux/
joystick.h 70 __s32 buttons; member in struct:JS_DATA_TYPE
  /external/kernel-headers/original/uapi/linux/
joystick.h 62 #define JSIOCGBUTTONS _IOR('j', 0x12, __u8) /* get number of buttons */
113 __s32 buttons; member in struct:JS_DATA_TYPE
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
joystick.h 61 #define JSIOCGBUTTONS _IOR('j', 0x12, __u8) /* get number of buttons */
112 __s32 buttons; member in struct:JS_DATA_TYPE
  /packages/apps/Settings/tests/robotests/src/com/android/settings/bluetooth/
BluetoothDetailsButtonsControllerTest.java 55 final View buttons = View.inflate( local
57 mConnectButton = buttons.findViewById(R.id.button2_positive);
58 mForgetButton = buttons.findViewById(R.id.button1_positive);
  /packages/apps/Settings/tests/robotests/src/com/android/settings/applications/appinfo/
InstantAppButtonsPreferenceControllerTest.java 98 final View buttons = View.inflate( local
100 mLaunchButton = buttons.findViewById(R.id.launch);
101 mInstallButton = buttons.findViewById(R.id.install);
102 mClearAppButton = buttons.findViewById(R.id.clear_data);
107 when(mPreference.findViewById(R.id.instant_app_button_container)).thenReturn(buttons);
  /external/tensorflow/tensorflow/examples/android/src/org/tensorflow/demo/
StylizeActivity.java 258 final ArrayList<Button> buttons = new ArrayList<>(); field in class:StylizeActivity.ImageGridAdapter
308 buttons.add(sizeButton);
309 buttons.add(saveButton);
327 return buttons.size() + NUM_STYLES;
332 if (position < buttons.size()) {
333 return buttons.get(position);
335 return items[position - buttons.size()];
  /cts/tests/tests/view/src/android/view/cts/
FocusFinderTest.java 79 * Go clockwise around the buttons from the top left searching for focus.
116 * Create a small rectangle on the border between the top left and top right buttons.
133 * Create a small rectangle on the border between the top left and bottom left buttons.
383 View[] buttons = new View[3]; local
388 buttons[i] = item.findViewById(R.id.itembutton);
395 verifyNextFocus(buttons[0], View.FOCUS_FORWARD, boxes[0]);
396 verifyNextFocus(boxes[0], View.FOCUS_FORWARD, buttons[1]);
397 verifyNextFocus(buttons[1], View.FOCUS_FORWARD, boxes[1]);
398 verifyNextFocus(boxes[1], View.FOCUS_FORWARD, buttons[2]);

Completed in 2067 milliseconds

12 3 4 5 6 7 8 91011