/external/python/cpython2/Demo/tkinter/guido/ |
D | rmt.py | 90 def backspace(e): function 94 t.bind('<BackSpace>', backspace) 95 t.bind('<Control-h>', backspace) 96 t.bind('<Delete>', backspace)
|
/external/jline/src/src/main/java/jline/ |
D | ConsoleReader.java | 628 success = backspace(); in readLine() 1120 backspace(diff); // go back for the differences in setBuffer() 1399 return backspace(Integer.MAX_VALUE); in backspaceAll() 1407 private final int backspace(final int num) throws IOException { in backspace() method in ConsoleReader 1435 public final boolean backspace() throws IOException { in backspace() method in ConsoleReader 1436 return backspace(1) == 1; in backspace() 1482 while (isDelimiter(buf.current()) && backspace()) { in deletePreviousWord() 1486 while (!isDelimiter(buf.current()) && backspace()) { in deletePreviousWord()
|
D | CandidateListCompletionHandler.java | 75 && reader.backspace()) { in setBuffer()
|
/external/python/cpython3/Lib/idlelib/ |
D | config-keys.def | 47 smart-backspace=<Key-BackSpace> 106 smart-backspace=<Key-BackSpace> 165 smart-backspace = <Key-BackSpace> 224 smart-backspace=<Key-BackSpace> 270 smart-backspace = <Key-BackSpace>
|
/external/u-boot/include/ |
D | video_console.h | 153 int (*backspace)(struct udevice *dev); member
|
/external/python/cpython2/Lib/idlelib/ |
D | config-keys.def | 47 smart-backspace=<Key-BackSpace> 98 smart-backspace=<Key-BackSpace> 149 smart-backspace=<Key-BackSpace> 187 smart-backspace = <Key-BackSpace>
|
D | help.txt | 162 Control-backspace deletes word left, Control-DEL deletes word right.
|
/external/libxkbcommon/xkbcommon/test/data/symbols/ |
D | capslock | 38 xkb_symbols "backspace" {
|
/external/u-boot/drivers/video/ |
D | vidconsole-uclass.c | 75 if (ops->backspace) { in vidconsole_back() 76 ret = ops->backspace(dev); in vidconsole_back()
|
D | console_truetype.c | 540 .backspace = console_truetype_backspace,
|
/external/jline/src/src/main/resources/jline/ |
D | keybindings-mac.properties | 23 # 8 is the ASCII code for backspace and therefor
|
D | keybindings.properties | 23 # 8 is the ASCII code for backspace and therefor
|
/external/clang/utils/ |
D | clang-completion-mode.el | 240 (define-key clang-completion-mode-map [(backspace)] 'clang-backspace)
|
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/ime/translit/ |
D | TransliteratorInputMethod.java | 522 private boolean backspace() { in backspace() method in TransliteratorInputMethod 613 case '\b': if (editing()) return backspace(); break; in handleTyped()
|
/external/python/cpython2/Doc/tutorial/ |
D | interpreter.rst | 43 command line editing isn't available; you'll only be able to use backspace to
|
/external/e2fsprogs/doc/RelNotes/ |
D | v1.41.13 | 63 Badblocks will now correctly backspace over UTF-8 characters when
|
/external/python/cpython3/Doc/tutorial/ |
D | interpreter.rst | 44 editing isn't available; you'll only be able to use backspace to remove
|
/external/libxkbcommon/xkbcommon/test/data/rules/ |
D | evdev | 997 caps:backspace = +capslock(backspace)
|
D | evdev-xkbcommon | 999 caps:backspace = +capslock(backspace)
|
D | base | 1108 caps:backspace = +capslock(backspace)
|
/external/python/cpython2/Doc/howto/ |
D | regex.rst | 743 expression sequences. In Python's string literals, ``\b`` is the backspace 745 convert the ``\b`` to a backspace, and your RE won't match as you expect it to. 756 ``\b`` represents the backspace character, for compatibility with Python's
|
D | curses.rst | 401 keys available are the backspace key and the Enter key, which terminates the
|
/external/python/cpython3/Doc/howto/ |
D | regex.rst | 762 expression sequences. In Python's string literals, ``\b`` is the backspace 764 convert the ``\b`` to a backspace, and your RE won't match as you expect it to. 775 ``\b`` represents the backspace character, for compatibility with Python's
|
/external/iputils/doc/ |
D | ping.sgml | 112 while for ever ECHO_REPLY received a backspace is printed.
|
/external/python/cpython2/Doc/library/ |
D | re.rst | 353 Inside a character range, ``\b`` represents the backspace character, for 421 (Note that ``\b`` is used to represent word boundaries, and means "backspace"
|