Home
last modified time | relevance | path

Searched refs:kbd (Results 1 – 25 of 198) sorted by relevance

12345678

/external/libxkbcommon/xkbcommon/test/
Dinteractive-x11.c118 update_keymap(struct keyboard *kbd) in update_keymap() argument
123 new_keymap = xkb_x11_keymap_new_from_device(kbd->ctx, kbd->conn, in update_keymap()
124 kbd->device_id, 0); in update_keymap()
128 new_state = xkb_x11_state_new_from_device(new_keymap, kbd->conn, in update_keymap()
129 kbd->device_id); in update_keymap()
133 if (kbd->keymap) in update_keymap()
136 xkb_state_unref(kbd->state); in update_keymap()
137 xkb_keymap_unref(kbd->keymap); in update_keymap()
138 kbd->keymap = new_keymap; in update_keymap()
139 kbd->state = new_state; in update_keymap()
[all …]
Dinteractive-evdev.c97 struct keyboard *kbd; in keyboard_new() local
132 kbd = calloc(1, sizeof(*kbd)); in keyboard_new()
133 if (!kbd) { in keyboard_new()
138 kbd->path = path; in keyboard_new()
139 kbd->fd = fd; in keyboard_new()
140 kbd->state = state; in keyboard_new()
141 kbd->compose_state = compose_state; in keyboard_new()
142 *out = kbd; in keyboard_new()
157 keyboard_free(struct keyboard *kbd) in keyboard_free() argument
159 if (!kbd) in keyboard_free()
[all …]
/external/u-boot/arch/powerpc/lib/
Dbootm.c36 static void set_clocks_in_mhz (bd_t *kbd);
102 bd_t *kbd = images->kbd; in boot_jump_linux() local
106 (*kernel) (kbd, initrd_start, initrd_end, in boot_jump_linux()
198 bd_t **kbd = &images->kbd; in boot_bd_t_linux() local
204 ret = boot_get_kbd (lmb, kbd); in boot_bd_t_linux()
209 set_clocks_in_mhz(*kbd); in boot_bd_t_linux()
268 static void set_clocks_in_mhz (bd_t *kbd) in set_clocks_in_mhz() argument
275 kbd->bi_intfreq /= 1000000L; in set_clocks_in_mhz()
276 kbd->bi_busfreq /= 1000000L; in set_clocks_in_mhz()
278 kbd->bi_cpmfreq /= 1000000L; in set_clocks_in_mhz()
[all …]
/external/u-boot/arch/m68k/lib/
Dbootm.c27 static void set_clocks_in_mhz (bd_t *kbd);
53 bd_t *kbd; in do_bootm_linux() local
67 ret = boot_get_kbd (lmb, &kbd); in do_bootm_linux()
72 set_clocks_in_mhz(kbd); in do_bootm_linux()
94 (*kernel)(kbd, images->initrd_start, images->initrd_end, in do_bootm_linux()
111 static void set_clocks_in_mhz (bd_t *kbd) in set_clocks_in_mhz() argument
118 kbd->bi_intfreq /= 1000000L; in set_clocks_in_mhz()
119 kbd->bi_busfreq /= 1000000L; in set_clocks_in_mhz()
/external/python/cpython2/Doc/tutorial/
Dinteractive.rst29 :kbd:`C-A` (Control-A) moves the cursor to the beginning of the line, :kbd:`C-E`
30 to the end, :kbd:`C-B` moves it one position to the left, :kbd:`C-F` to the
31 right. Backspace erases the character to the left of the cursor, :kbd:`C-D` the
32 character to its right. :kbd:`C-K` kills (erases) the rest of the line to the
33 right of the cursor, :kbd:`C-Y` yanks back the last killed string.
34 :kbd:`C-underscore` undoes the last change you made; it can be repeated for
45 a new line at the bottom of this buffer. :kbd:`C-P` moves one line up (back) in
46 the history buffer, :kbd:`C-N` moves one down. Any line in the history buffer
48 modified. Pressing the :kbd:`Return` key passes the current line to the
49 interpreter. :kbd:`C-R` starts an incremental reverse search; :kbd:`C-S` starts
[all …]
Dinterpreter.rst31 Typing an end-of-file character (:kbd:`Control-D` on Unix, :kbd:`Control-Z` on
40 supported is typing :kbd:`Control-P` to the first Python prompt you get. If it beeps,
Dappendix.rst28 Typing the interrupt character (usually :kbd:`Control-C` or :kbd:`Delete`) to the primary or
/external/python/cpython2/Doc/library/
Didle.rst346 In this section, 'C' refers to the :kbd:`Control` key on Windows and Unix and
347 the :kbd:`Command` key on Mac OSX.
349 * :kbd:`Backspace` deletes to the left; :kbd:`Del` deletes to the right
351 * :kbd:`C-Backspace` delete word left; :kbd:`C-Del` delete word to the right
353 * Arrow keys and :kbd:`Page Up`/:kbd:`Page Down` to move around
355 * :kbd:`C-LeftArrow` and :kbd:`C-RightArrow` moves by words
357 * :kbd:`Home`/:kbd:`End` go to begin/end of line
359 * :kbd:`C-Home`/:kbd:`C-End` go to begin/end of file
363 * :kbd:`C-a` beginning of line
365 * :kbd:`C-e` end of line
[all …]
Dcmd.rst25 key; it defaults to :kbd:`Tab`. If *completekey* is not :const:`None` and
59 :program:`bash`\ -like history-list editing (e.g. :kbd:`Control-P` scrolls back
60 to the last command, :kbd:`Control-N` forward to the next one, :kbd:`Control-F`
61 moves the cursor to the right non-destructively, :kbd:`Control-B` moves the
Dcurses.rst1517 | :kbd:`Insert` | KEY_IC |
1519 | :kbd:`Delete` | KEY_DC |
1521 | :kbd:`Home` | KEY_HOME |
1523 | :kbd:`End` | KEY_END |
1525 | :kbd:`Page Up` | KEY_PPAGE |
1527 | :kbd:`Page Down` | KEY_NPAGE |
1722 | :kbd:`Control-A` | Go to left edge of window. |
1724 | :kbd:`Control-B` | Cursor left, wrapping to previous line if |
1727 | :kbd:`Control-D` | Delete character under cursor. |
1729 | :kbd:`Control-E` | Go to right edge (stripspaces off) or end |
[all …]
Dmsvcrt.rst96 not wait for :kbd:`Enter` to be pressed. If the pressed key was a special
98 return the keycode. The :kbd:`Control-C` keypress cannot be read with this
/external/python/cpython3/Doc/library/
Didle.rst390 In this section, 'C' refers to the :kbd:`Control` key on Windows and Unix and
391 the :kbd:`Command` key on macOS.
393 * :kbd:`Backspace` deletes to the left; :kbd:`Del` deletes to the right
395 * :kbd:`C-Backspace` delete word left; :kbd:`C-Del` delete word to the right
397 * Arrow keys and :kbd:`Page Up`/:kbd:`Page Down` to move around
399 * :kbd:`C-LeftArrow` and :kbd:`C-RightArrow` moves by words
401 * :kbd:`Home`/:kbd:`End` go to begin/end of line
403 * :kbd:`C-Home`/:kbd:`C-End` go to begin/end of file
407 * :kbd:`C-a` beginning of line
409 * :kbd:`C-e` end of line
[all …]
Dcurses.rst1567 | :kbd:`Insert` | KEY_IC |
1569 | :kbd:`Delete` | KEY_DC |
1571 | :kbd:`Home` | KEY_HOME |
1573 | :kbd:`End` | KEY_END |
1575 | :kbd:`Page Up` | KEY_PPAGE |
1577 | :kbd:`Page Down` | KEY_NPAGE |
1770 | :kbd:`Control-A` | Go to left edge of window. |
1772 | :kbd:`Control-B` | Cursor left, wrapping to previous line if |
1775 | :kbd:`Control-D` | Delete character under cursor. |
1777 | :kbd:`Control-E` | Go to right edge (stripspaces off) or end |
[all …]
Dcmd.rst26 key; it defaults to :kbd:`Tab`. If *completekey* is not :const:`None` and
57 :program:`bash`\ -like history-list editing (e.g. :kbd:`Control-P` scrolls back
58 to the last command, :kbd:`Control-N` forward to the next one, :kbd:`Control-F`
59 moves the cursor to the right non-destructively, :kbd:`Control-B` moves the
Dmsvcrt.rst102 is not already available, but will not wait for :kbd:`Enter` to be
105 The :kbd:`Control-C` keypress cannot be read with this function.
/external/autotest/client/site_tests/login_OobeLocalization/
Dlogin_OobeLocalization.py96 keyboards = [kbd for kbd in keyboards if kbd in self._login_keyboards]
/external/python/cpython2/Doc/faq/
Dwindows.rst80 calculator. When you want to end your interactive Python session, hold the :kbd:`Ctrl`
81 key down while you enter a :kbd:`Z`, then hit the ":kbd:`Enter`" key to get back to your
87 after you enter the :kbd:`Ctrl-Z` character; Windows is running a single "python"
130 starts up the interpreter as above (and don't forget you'll need a ":kbd:`Ctrl-Z`" and
131 an ":kbd:`Enter`" to get out of it). Once you have verified the directory, you can
324 with the additional feature of being able to send :kbd:`Ctrl+C` and :kbd:`Ctrl+Break`
/external/google-styleguide/
Djavaguide.css192 kbd, selector
407 kbd, selector
412 kbd { selector
/external/u-boot/common/
Dimage.c1464 int boot_get_kbd(struct lmb *lmb, bd_t **kbd) in boot_get_kbd() argument
1466 *kbd = (bd_t *)(ulong)lmb_alloc_base(lmb, sizeof(bd_t), 0xf, in boot_get_kbd()
1468 if (*kbd == NULL) in boot_get_kbd()
1471 **kbd = *(gd->bd); in boot_get_kbd()
1473 debug("## kernel board info at 0x%08lx\n", (ulong)*kbd); in boot_get_kbd()
/external/autotest/server/site_tests/platform_USBHIDWake/
Dcontrol15 the DUT. The openvt binary (emerge emerge sys-apps/kbd) should be available
/external/icu/icu4c/source/data/lang/
Dos.txt62 kbd{"кӕсгон"}
Des_US.txt25 kbd{"kabardiano"}
/external/python/cpython3/Doc/tutorial/
Dinterpreter.rst33 Typing an end-of-file character (:kbd:`Control-D` on Unix, :kbd:`Control-Z` on
41 :kbd:`Control-P` to the first Python prompt you get. If it beeps, you have command
Dappendix.rst28 Typing the interrupt character (usually :kbd:`Control-C` or :kbd:`Delete`) to the primary or
/external/python/cpython3/Doc/faq/
Dwindows.rst84 call the :func:`exit` function or hold the :kbd:`Ctrl` key down
85 while you enter a :kbd:`Z`, then hit the ":kbd:`Enter`" key to get
91 after you call the :func:`exit` function or enter the :kbd:`Ctrl-Z`

12345678