Home
last modified time | relevance | path

Searched refs:scroll (Results 1 – 25 of 134) sorted by relevance

123456

/external/toybox/kconfig/lxdialog/
Dmenubox.c111 static void print_arrows(WINDOW * win, int item_no, int scroll, int y, int x, in print_arrows() argument
120 if (scroll > 0) { in print_arrows()
136 if ((height < item_no) && (scroll + height < item_no)) { in print_arrows()
169 static void do_scroll(WINDOW *win, int *scroll, int n) in do_scroll() argument
175 *scroll = *scroll + n; in do_scroll()
187 int key = 0, button = 0, scroll = 0, choice = 0; in dialog_menu() local
250 scroll = *s_scroll; in dialog_menu()
251 if ((scroll <= choice) && (scroll + max_choice > choice) && in dialog_menu()
252 (scroll >= 0) && (scroll + max_choice <= item_count())) { in dialog_menu()
253 first_item = scroll; in dialog_menu()
[all …]
Dchecklist.c59 static void print_arrows(WINDOW * win, int choice, int item_no, int scroll, in print_arrows() argument
64 if (scroll > 0) { in print_arrows()
79 if ((height < item_no) && (scroll + choice < item_no - 1)) { in print_arrows()
115 int key = 0, button = 0, choice = 0, scroll = 0, max_choice; in dialog_checklist() local
182 scroll = choice - list_height + 1; in dialog_checklist()
183 choice -= scroll; in dialog_checklist()
188 item_set(scroll + i); in dialog_checklist()
192 print_arrows(dialog, choice, item_count(), scroll, in dialog_checklist()
205 item_set(i + scroll); in dialog_checklist()
214 if (!scroll) in dialog_checklist()
[all …]
Dinputbox.c48 int input_x = 0, scroll = 0, key = 0, button = -1; in dialog_inputbox() local
103 scroll = input_x - box_width + 1; in dialog_inputbox()
106 waddch(dialog, instr[scroll + i]); in dialog_inputbox()
130 if (input_x || scroll) { in dialog_inputbox()
133 scroll = scroll < box_width - 1 ? 0 : scroll - (box_width - 1); in dialog_inputbox()
137 instr[scroll + input_x + i] ? in dialog_inputbox()
138 instr[scroll + input_x + i] : ' '); in dialog_inputbox()
139 input_x = strlen(instr) - scroll; in dialog_inputbox()
142 instr[scroll + input_x] = '\0'; in dialog_inputbox()
150 if (scroll + input_x < MAX_LEN) { in dialog_inputbox()
[all …]
/external/u-boot/scripts/kconfig/lxdialog/
Dmenubox.c98 static void print_arrows(WINDOW * win, int item_no, int scroll, int y, int x, in print_arrows() argument
107 if (scroll > 0) { in print_arrows()
123 if ((height < item_no) && (scroll + height < item_no)) { in print_arrows()
158 static void do_scroll(WINDOW *win, int *scroll, int n) in do_scroll() argument
164 *scroll = *scroll + n; in do_scroll()
176 int key = 0, button = 0, scroll = 0, choice = 0; in dialog_menu() local
239 scroll = *s_scroll; in dialog_menu()
240 if ((scroll <= choice) && (scroll + max_choice > choice) && in dialog_menu()
241 (scroll >= 0) && (scroll + max_choice <= item_count())) { in dialog_menu()
242 first_item = scroll; in dialog_menu()
[all …]
Dchecklist.c52 static void print_arrows(WINDOW * win, int choice, int item_no, int scroll, in print_arrows() argument
57 if (scroll > 0) { in print_arrows()
72 if ((height < item_no) && (scroll + choice < item_no - 1)) { in print_arrows()
108 int key = 0, button = 0, choice = 0, scroll = 0, max_choice; in dialog_checklist() local
176 scroll = choice - list_height + 1; in dialog_checklist()
177 choice -= scroll; in dialog_checklist()
182 item_set(scroll + i); in dialog_checklist()
186 print_arrows(dialog, choice, item_count(), scroll, in dialog_checklist()
199 item_set(i + scroll); in dialog_checklist()
208 if (!scroll) in dialog_checklist()
[all …]
/external/droiddriver/src/io/appium/droiddriver/scroll/
DScrollers.java17 package io.appium.droiddriver.scroll;
25 import io.appium.droiddriver.scroll.Direction.Axis;
26 import io.appium.droiddriver.scroll.Direction.DirectionConverter;
27 import io.appium.droiddriver.scroll.Direction.PhysicalDirection;
39 public boolean scroll(DroidDriver driver, Finder containerFinder, PhysicalDirection direction) { in scroll() method in Scrollers.ProgressBarScrollStepStrategy
40 if (super.scroll(driver, containerFinder, direction)) { in scroll()
DStepBasedScroller.java16 package io.appium.droiddriver.scroll;
18 import static io.appium.droiddriver.scroll.Direction.LogicalDirection.BACKWARD;
29 import io.appium.droiddriver.scroll.Direction.Axis;
30 import io.appium.droiddriver.scroll.Direction.DirectionConverter;
31 import io.appium.droiddriver.scroll.Direction.PhysicalDirection;
94 if (i < maxScrolls && !scrollStepStrategy.scroll(driver, containerFinder, direction)) { in scrollTo()
112 driver.on(containerFinder).scroll(direction.reverse()); in scrollTo()
149 if (!scrollStepStrategy.scroll(driver, containerFinder, backwardDirection)) { in scrollTo()
DForwardingScrollStepStrategy.java16 package io.appium.droiddriver.scroll;
22 import io.appium.droiddriver.scroll.Direction.DirectionConverter;
23 import io.appium.droiddriver.scroll.Direction.PhysicalDirection;
39 public boolean scroll(DroidDriver driver, Finder containerFinder, PhysicalDirection direction) { in scroll() method in ForwardingScrollStepStrategy
40 return delegate().scroll(driver, containerFinder, direction); in scroll()
DScrollStepStrategy.java16 package io.appium.droiddriver.scroll;
21 import io.appium.droiddriver.scroll.Direction.DirectionConverter;
22 import io.appium.droiddriver.scroll.Direction.PhysicalDirection;
37 boolean scroll(DroidDriver driver, Finder containerFinder, PhysicalDirection direction); in scroll() method
DStaticSentinelStrategy.java16 package io.appium.droiddriver.scroll;
24 import io.appium.droiddriver.scroll.Direction.DirectionConverter;
25 import io.appium.droiddriver.scroll.Direction.PhysicalDirection;
51 public boolean scroll(DroidDriver driver, Finder containerFinder, PhysicalDirection direction) { in scroll() method in StaticSentinelStrategy
DDirection.java16 package io.appium.droiddriver.scroll;
18 import static io.appium.droiddriver.scroll.Direction.PhysicalDirection.DOWN;
19 import static io.appium.droiddriver.scroll.Direction.PhysicalDirection.LEFT;
20 import static io.appium.droiddriver.scroll.Direction.PhysicalDirection.RIGHT;
21 import static io.appium.droiddriver.scroll.Direction.PhysicalDirection.UP;
DSentinelStrategy.java16 package io.appium.droiddriver.scroll;
29 import io.appium.droiddriver.scroll.Direction.DirectionConverter;
30 import io.appium.droiddriver.scroll.Direction.LogicalDirection;
31 import io.appium.droiddriver.scroll.Direction.PhysicalDirection;
208 container.scroll(direction); in doScroll()
DAccessibilityEventScrollStepStrategy.java16 package io.appium.droiddriver.scroll;
31 import io.appium.droiddriver.scroll.Direction.Axis;
32 import io.appium.droiddriver.scroll.Direction.DirectionConverter;
33 import io.appium.droiddriver.scroll.Direction.PhysicalDirection;
111 public boolean scroll(DroidDriver driver, Finder containerFinder, in scroll() method in AccessibilityEventScrollStepStrategy
/external/autotest/client/site_tests/touch_ScrollDirection/
DREADME1 touch_ScrollDirection test uses four gesture files that scroll. All scrolls
3 lift fingers and continue to scroll). Having the scroll stop in the middle of
6 <DEVICE NAME>_touchpad_Touch ID_scroll-down - Two finger scroll on touchpad in downward direction.
7 <DEVICE NAME>_touchpad_Touch ID_scroll-right - Two finger scroll on touchpad in right direction.
8 <DEVICE NAME>_touchpad_Touch ID_scroll-left - Two finger scroll on touchpad in left direction.
9 <DEVICE NAME>_touchpad_Touch ID_scroll-up - Two finger scroll on touchpad in upward direction.
/external/autotest/client/site_tests/touch_GestureNav/
DREADME1 touch_BackFwdTest test uses two gesture files that long-scroll horizontally.
3 (i.e. do not lift fingers and continue to scroll). Having the scroll stop
8 scroll on touchpad to navigate back.
10 scroll on touchpad to navigate forward.
/external/autotest/client/site_tests/touch_TabSwitch/
DREADME1 touch_TabSwitch test uses two gesture files that scroll. All scrolls
3 lift fingers and continue to scroll). Having the scroll stop in the middle of
6 <DEVICE NAME>_touchpad_Touch ID_three-finger-swipe-left - Three finger scroll on touchpad to switc…
7 <DEVICE NAME>_touchpad_Touch ID_three-finger-swipe-right - Three finger scroll on touchpad to swit…
/external/autotest/client/site_tests/touch_MouseScroll/
DREADME1 touch_MouseScroll test uses thirteen gesture files that scroll. All scrolls
3 scroll movement). Having the scroll stop in the middle of the test would break
8 up_1 - Scroll the mouse wheel up (one gear up) to record single scroll.
11 down_1 - Scroll the mouse wheel down (one gear down) to record single scroll.
18 right_1 - Scroll the mouse ball right (one gear right) to record single scroll.
21 left_1 - Scroll the mouse ball left (one gear left) to record single scroll.
Dcontrol20 scroll wheel tick (both up and down) and measures the page scroll delta.
21 Plays back a fast scroll and a slow scroll and compares them.
/external/python/cpython3/Doc/library/
Dtkinter.scrolledtext.rst6 :synopsis: Text widget with a vertical scroll bar.
15 implements a basic text widget which has a vertical scroll bar configured to do
17 setting up a text widget and scroll bar directly. The constructor is the same
31 The frame which surrounds the text and scroll bar widgets.
36 The scroll bar widget.
/external/python/cpython2/Doc/library/
Dscrolledtext.rst6 :synopsis: Text widget with a vertical scroll bar.
11 implements a basic text widget which has a vertical scroll bar configured to do
13 setting up a text widget and scroll bar directly. The constructor is the same
33 The frame which surrounds the text and scroll bar widgets.
38 The scroll bar widget.
/external/antlr/gunit/src/main/java/org/antlr/gunit/swingui/
DRuleListController.java55 private final JScrollPane scroll = new JScrollPane( list, field in RuleListController
68 return scroll; in getView()
89 scroll.setViewportBorder(BorderFactory.createEtchedBorder()); in initComponents()
90 scroll.setBorder(BorderFactory.createTitledBorder( in initComponents()
92 scroll.setOpaque(false); in initComponents()
DTestCaseEditController.java47 private JScrollPane scroll; field in TestCaseEditController
149 scroll = new JScrollPane(listCases); in initComponents()
150 scroll.setBorder(BorderFactory.createTitledBorder( in initComponents()
152 scroll.setOpaque(false); in initComponents()
153 scroll.setViewportBorder(BorderFactory.createEtchedBorder()); in initComponents()
202 view.add(scroll, BorderLayout.CENTER); in initComponents()
427 private JScrollPane scroll = new JScrollPane(textArea, field in TestCaseEditController.InputMultiEditor
433 scroll.setBorder(BorderFactory.createLineBorder(Color.LIGHT_GRAY)); in InputMultiEditor()
451 return scroll; in getView()
505 private JScrollPane scroll = new JScrollPane(textArea, field in TestCaseEditController.OutputAstEditor
[all …]
DRunnerController.java69 private JScrollPane scroll = new JScrollPane(tree, field in RunnerController.RunnerView
76 scroll.setBorder(BorderFactory.createLineBorder(Color.LIGHT_GRAY)); in initComponents()
77 scroll.setOpaque(false); in initComponents()
79 this.add(scroll); in initComponents()
/external/wpa_supplicant_8/src/utils/
Dbrowser.c153 GtkWidget *scroll; in hs20_web_browser() local
172 scroll = gtk_scrolled_window_new(NULL, NULL); in hs20_web_browser()
173 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scroll), in hs20_web_browser()
195 gtk_container_add(GTK_CONTAINER(scroll), GTK_WIDGET(view)); in hs20_web_browser()
196 gtk_container_add(GTK_CONTAINER(ctx.win), GTK_WIDGET(scroll)); in hs20_web_browser()
/external/autotest/client/site_tests/platform_ScrollTest/
Dplatform_ScrollTest.py13 from telemetry.internal.actions import scroll
58 page_scroll = scroll.ScrollAction(
66 page_scroll = scroll.ScrollAction(

123456