Home
last modified time | relevance | path

Searched refs:buttons (Results 1 – 25 of 121) sorted by relevance

12345

/external/autotest/frontend/client/src/autotest/common/table/
DRadioButtonSetFilter.java15 private Vector<RadioButton> buttons; field in RadioButtonSetFilter
25 buttons = new Vector(); in RadioButtonSetFilter()
35 int formValue = buttons.size(); in addRadioButon()
38 buttons.add(radioButton); in addRadioButon()
43 if (index < buttons.size()) in setSelectedButton()
45 buttons.get(index).setChecked(true); in setSelectedButton()
53 return buttons.size(); in getButtonNum()
/external/grpc-grpc-java/android-interop-testing/app/src/main/java/io/grpc/android/integrationtest/
DTesterActivity.java49 private List<Button> buttons; field in TesterActivity
60 buttons = new LinkedList<>(); in onCreate()
61 buttons.add((Button) findViewById(R.id.empty_unary_button)); in onCreate()
62 buttons.add((Button) findViewById(R.id.large_unary_button)); in onCreate()
63 buttons.add((Button) findViewById(R.id.client_streaming_button)); in onCreate()
64 buttons.add((Button) findViewById(R.id.server_streaming_button)); in onCreate()
65 buttons.add((Button) findViewById(R.id.ping_pong_button)); in onCreate()
99 for (Button button : buttons) { in enableButtons()
/external/lzma/CPP/Windows/Control/
DToolBar.h35 …Button(UINT numButtons, LPTBBUTTON buttons) { return LRESULTToBool(SendMsg(TB_ADDBUTTONS, numButto… in AddButton() argument
37 …uttonW(UINT numButtons, LPTBBUTTON buttons) { return LRESULTToBool(SendMsg(TB_ADDBUTTONSW, numButt… in AddButtonW() argument
/external/setupdesign/main/src/com/google/android/setupdesign/items/
DButtonBarItem.java50 private final ArrayList<ButtonItem> buttons = new ArrayList<>(); field in ButtonBarItem
97 for (ButtonItem buttonItem : buttons) { in onBindView()
108 buttons.add((ButtonItem) child); in addChild()
119 for (ButtonItem button : buttons) { in findItemById()
/external/autotest/frontend/client/src/autotest/afe/
DAbortSynchronousDialog.java55 Panel buttons = new HorizontalPanel(); in AbortSynchronousDialog() local
56 buttons.add(abortAll); in AbortSynchronousDialog()
58 buttons.add(abortAsynchronous); in AbortSynchronousDialog()
60 buttons.add(cancel); in AbortSynchronousDialog()
61 contents.add(buttons); in AbortSynchronousDialog()
/external/u-boot/arch/mips/mach-bmips/
DKconfig134 ethernet ports, 1 USB port, 1 UART, GPIO buttons and LEDs, and
145 ethernet ports, 1 USB port, 1 UART, GPIO buttons and LEDs, and
156 ethernet ports, 1 USB port, 1 UART, GPIO buttons and LEDs, and a
167 ethernet ports, 1 USB port, 1 UART, GPIO buttons and LEDs,
178 ethernet ports, 1 USB port, 1 UART, GPIO buttons and LEDs,
189 ethernet ports, 3 USB ports, 1 UART, GPIO buttons and LEDs, and
200 ethernet ports, 1 UART, GPIO buttons and LEDs, and a BCM43225
211 ethernet ports, 2 USB ports, 1 UART, GPIO buttons and LEDs, and a
222 ethernet ports, 1 UART, GPIO buttons and LEDs, and a BCM4312
233 ethernet ports, 2 USB ports, 1 UART, GPIO buttons and LEDs, and
/external/python/cpython2/Tools/audiopy/
Daudiopy97 buttons = []
117 buttons.append(btn)
130 buttons.append(btn)
143 buttons.append(btn)
158 buttons.append(btn)
179 buttons.append(btn)
193 buttons.append(btn)
207 buttons.append(btn)
211 for b in buttons:
215 for b in buttons:
/external/python/cpython2/Lib/lib-tk/
DSimpleDialog.py10 text='', buttons=[], default=None, cancel=None, argument
27 for num in range(len(buttons)):
28 s = buttons[num]
101 buttons=["Yes", "No", "Cancel"],
/external/python/cpython2/Demo/tkinter/guido/
Ddialog.py37 buttons = []
41 buttons.append(b)
58 lambda e, b=buttons[default], v=var, i=default:
/external/python/cpython2/Lib/idlelib/idle_test/
Dtest_searchdialogbase.py133 buttons = frame.pack_slaves()
134 for spec, button in zip(others, buttons):
141 buttons[val].select()
143 buttons[1-val].select()
/external/tensorflow/tensorflow/examples/android/src/org/tensorflow/demo/
DStylizeActivity.java263 final ArrayList<Button> buttons = new ArrayList<>(); field in StylizeActivity.ImageGridAdapter
313 buttons.add(sizeButton);
314 buttons.add(saveButton);
332 return buttons.size() + NUM_STYLES; in getCount()
337 if (position < buttons.size()) { in getItem()
338 return buttons.get(position); in getItem()
340 return items[position - buttons.size()]; in getItem()
407 adapter.buttons.clear(); in onPreviewSizeChosen()
/external/autotest/client/cros/
Dsemiauto_framework.py58 def set_tab_with_buttons(self, html, buttons=['OK']): argument
68 for title in buttons:
/external/python/cpython3/Lib/tkinter/
Dsimpledialog.py34 text='', buttons=[], default=None, cancel=None, argument
51 for num in range(len(buttons)):
52 s = buttons[num]
408 buttons=["Yes", "No", "Cancel"],
/external/u-boot/board/boundary/nitrogen6x/
Dnitrogen6x.c928 static struct button_key const buttons[] = { variable
944 for (i = 0; i < ARRAY_SIZE(buttons); i++) { in read_keys()
945 if (!gpio_get_value(buttons[i].gpnum)) in read_keys()
946 buf[numpressed++] = buttons[i].ident; in read_keys()
954 char envvalue[ARRAY_SIZE(buttons)+1]; in do_kbd()
973 char keypress[ARRAY_SIZE(buttons)+1]; in preboot_keys()
/external/sonivox/jet_tools/JetCreator/
DJetCreatorhlp.dat40 …egments display here. You may add, revise, or delete segments using the buttons at the left. You…
41 …rrently selected segment display here. Double click to edit, or use the buttons at the left to ad…
101 …ile display here. Double click on a segment to add it to the play queue, or use the buttons below.
103 …segment displays its current run status. You may modify the playback state with the buttons below.
/external/python/cpython2/Tools/webchecker/
Dtktools.py320 def unify_button_widths(*buttons): argument
327 for btn in buttons:
329 for btn in buttons:
/external/python/cpython3/Lib/idlelib/idle_test/
Dtest_searchbase.py131 buttons = frame.pack_slaves()
132 for spec, button in zip(others, buttons):
/external/python/cpython2/Lib/idlelib/
DIOBinding.py100 buttons = Frame(top)
101 buttons.pack(side=TOP, fill=X)
104 b1 = Button(buttons, text="Ok", default="active",
107 b2 = Button(buttons, text="Edit my file",
/external/eigen/demos/mandelbrot/
Dmandelbrot.cpp175 if( event->buttons() & Qt::LeftButton ) in mousePressEvent()
192 if( event->buttons() & Qt::LeftButton ) in mouseMoveEvent()
/external/perfetto/ui/src/frontend/
Ddrag_gesture_handler.ts41 if (e.buttons === 0) {
/external/autotest/client/site_tests/hardware_GPIOSwitches/
Dcontrol17 This test checks if the buttons and mode switches are set as expected
/external/python/cpython3/Tools/pynche/
DREADME89 buttons.
158 There are also two shortcut buttons in this window, which
218 the radio buttons below. When this is turned off, text widget
222 clicking on one of the radio buttons in the bottom part of this
260 buttons along the top apply the specified increment and decrement
273 a result of clicking on the top row buttons:
300 The top row buttons have the following keyboard accelerators:
/external/python/cpython2/Tools/pynche/
DREADME89 buttons.
158 There are also two shortcut buttons in this window, which
218 the radio buttons below. When this is turned off, text widget
222 clicking on one of the radio buttons in the bottom part of this
260 buttons along the top apply the specified increment and decrement
273 a result of clicking on the top row buttons:
300 The top row buttons have the following keyboard accelerators:
/external/grpc-grpc/src/objective-c/tests/Connectivity/
DREADME.md6 app on an iOS device. Once running, tap a few times of each of the two buttons to make a few unary …
/external/kernel-headers/original/uapi/linux/
Djoystick.h109 __s32 buttons; member

12345