/openbmc/u-boot/scripts/kconfig/lxdialog/ |
H A D | menubox.c | 98 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 …]
|
H A D | checklist.c | 52 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 …]
|
/openbmc/linux/scripts/kconfig/lxdialog/ |
H A D | menubox.c | 90 static void print_arrows(WINDOW * win, int item_no, int scroll, int y, int x, in print_arrows() argument 99 if (scroll > 0) { in print_arrows() 115 if ((height < item_no) && (scroll + height < item_no)) { in print_arrows() 150 static void do_scroll(WINDOW *win, int *scroll, int n) in do_scroll() argument 156 *scroll = *scroll + n; in do_scroll() 168 int key = 0, button = 0, scroll = 0, choice = 0; in dialog_menu() local 231 scroll = *s_scroll; in dialog_menu() 232 if ((scroll <= choice) && (scroll + max_choice > choice) && in dialog_menu() 233 (scroll >= 0) && (scroll + max_choice <= item_count())) { in dialog_menu() 234 first_item = scroll; in dialog_menu() [all …]
|
H A D | checklist.c | 52 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 …]
|
/openbmc/linux/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/ |
H A D | SchedGui.py | 42 self.scroll = wx.ScrolledWindow(self.panel) 43 …self.scroll.SetScrollbars(self.scroll_scale, self.scroll_scale, self.width_virtual / self.scroll_s… 44 self.scroll.EnableScrolling(True, True) 45 self.scroll.SetFocus() 48 self.scroll_panel = wx.Panel(self.scroll, size=(self.screen_width - 15, self.screen_height / 2)) 52 self.scroll.Bind(wx.EVT_PAINT, self.on_paint) 53 self.scroll.Bind(wx.EVT_KEY_DOWN, self.on_key_press) 54 self.scroll.Bind(wx.EVT_LEFT_DOWN, self.on_mouse_down) 56 self.scroll.Fit() 72 (x, y) = self.scroll.GetViewStart() [all …]
|
/openbmc/linux/drivers/input/keyboard/ |
H A D | atkbd.c | 57 module_param_named(scroll, atkbd_scroll, bool, 0); 58 MODULE_PARM_DESC(scroll, "Enable scroll-wheel on MS Office and similar keyboards"); 220 bool scroll; member 277 ATKBD_DEFINE_ATTR(scroll); 448 int scroll = 0, hscroll = 0, click = -1; in atkbd_receive_byte() local 528 scroll = 1; in atkbd_receive_byte() 531 scroll = 2; in atkbd_receive_byte() 534 scroll = 4; in atkbd_receive_byte() 537 scroll = 8; in atkbd_receive_byte() 571 if (atkbd->scroll) { in atkbd_receive_byte() [all …]
|
/openbmc/linux/Documentation/input/devices/ |
H A D | sentelic.rst | 121 Bit4 => scroll up 122 Bit5 => scroll down 123 Bit6 => scroll left 124 Bit7 => scroll right 227 Byte 4: Bit7 => scroll right button 228 Bit6 => scroll left button 229 Bit5 => scroll down button 230 Bit4 => scroll up button 268 Bit4 => scroll down button 269 Bit5 => scroll up button [all …]
|
H A D | elantech.rst | 202 V: 1 = enable vertical scroll area 203 H: 1 = enable horizontal scroll area 211 scroll area width (small: 0x40 ... wide: 0xff) 272 ds3..ds0 = scroll wheel amount and direction 284 h = 1 when horizontal scroll action 292 ds7..ds0 = vertical scroll amount and direction 380 S: 1 = enable vertical scroll
|
/openbmc/openbmc-tools/dbus-vis/ |
H A D | dbus_vis.css | 132 overflow-y: scroll; 134 overflow-x: scroll;
|
/openbmc/linux/arch/x86/boot/compressed/ |
H A D | misc.c | 95 static void scroll(void) in scroll() function 142 scroll(); in __putstr() 150 scroll(); in __putstr()
|
/openbmc/linux/drivers/input/mouse/ |
H A D | synaptics.h | 162 s8 scroll; member 185 int scroll; member
|
H A D | synaptics.c | 880 hw->scroll = (s8)buf[1]; in synaptics_parse_hw_state() 1111 if (hw.scroll) { in synaptics_process_packet() 1112 priv->scroll += hw.scroll; in synaptics_process_packet() 1114 while (priv->scroll >= 4) { in synaptics_process_packet() 1119 priv->scroll -= 4; in synaptics_process_packet() 1121 while (priv->scroll <= -4) { in synaptics_process_packet() 1126 priv->scroll += 4; in synaptics_process_packet()
|
/openbmc/webui-vue/src/components/Mixins/ |
H A D | JumpLinkMixin.js | 19 window.scroll({
|
/openbmc/openbmc-test-automation/gui/test/gui_header/ |
H A D | test_obmc_gui_ip_refresh_check.robot | 100 # Reduce the browser size which enables scroll element. 103 # Below element is to scroll back.
|
/openbmc/linux/Documentation/userspace-api/media/v4l/ |
H A D | ext-ctrls-fm-rx.rst | 38 which can scroll strings sized as 8 x N characters. So, this control 51 also possible to find receivers which can scroll strings sized as 32
|
H A D | ext-ctrls-fm-tx.rst | 44 which can scroll strings sized as 8 x N characters. So, this control 58 which can scroll strings sized as 32 x N or 64 x N characters. So,
|
/openbmc/qemu/qapi/ |
H A D | common.json | 196 # @scrolllock: scroll lock key 198 # @ctrl-scrolllock: either control key and scroll lock key
|
/openbmc/linux/arch/arm/boot/dts/marvell/ |
H A D | armada-xp-lenovo-ix4-300d.dts | 160 scroll-button { 284 scroll_button_pin: scroll-button-pin {
|
/openbmc/webui-vue/src/components/Global/ |
H A D | ButtonBackToTop.vue | 31 window.addEventListener('scroll', debounce(this.handleScroll, 200));
|
/openbmc/linux/Documentation/input/ |
H A D | event-codes.rst | 171 them on the touchpad in an effort to scroll content on screen, 196 - These codes are used for vertical and horizontal scroll wheels, 199 this may be an approximation based on the high-resolution scroll events, 206 - High-resolution scroll wheel data. The accumulated value 120 represents 211 If a vertical scroll wheel supports high-resolution scrolling, this code 214 scroll events. There is no guarantee that the high-resolution data 416 scroll wheel events where available.
|
/openbmc/linux/Documentation/fb/ |
H A D | uvesafb.rst | 56 # modprobe uvesafb mode_option=1024x768-32 mtrr=3 scroll=ywrap (module) 77 used a parameter of the scroll option, e.g. scroll=ypan.)
|
/openbmc/phosphor-webui/app/common/styles/base/ |
H A D | utility.scss | 102 .show-scroll {
|
/openbmc/linux/Documentation/arch/s390/ |
H A D | 3270.ChangeLog | 41 scroll-timeout code.
|
/openbmc/openbmc/poky/meta/recipes-sato/rxvt-unicode/ |
H A D | rxvt-unicode.inc | 31 --enable-text-blink --enable-rxvt-scroll \
|
/openbmc/openbmc-test-automation/gui/test/server_config/ |
H A D | test_obmc_gui_firmware_update.robot | 35 [Documentation] Verify scroll down link works.
|