Home
last modified time | relevance | path

Searched refs:backspace (Results 1 – 25 of 37) sorted by relevance

12

/external/python/cpython2/Demo/tkinter/guido/
Drmt.py90 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/
DConsoleReader.java628 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()
DCandidateListCompletionHandler.java75 && reader.backspace()) { in setBuffer()
/external/python/cpython3/Lib/idlelib/
Dconfig-keys.def47 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/
Dvideo_console.h153 int (*backspace)(struct udevice *dev); member
/external/python/cpython2/Lib/idlelib/
Dconfig-keys.def47 smart-backspace=<Key-BackSpace>
98 smart-backspace=<Key-BackSpace>
149 smart-backspace=<Key-BackSpace>
187 smart-backspace = <Key-BackSpace>
Dhelp.txt162 Control-backspace deletes word left, Control-DEL deletes word right.
/external/libxkbcommon/xkbcommon/test/data/symbols/
Dcapslock38 xkb_symbols "backspace" {
/external/u-boot/drivers/video/
Dvidconsole-uclass.c75 if (ops->backspace) { in vidconsole_back()
76 ret = ops->backspace(dev); in vidconsole_back()
Dconsole_truetype.c540 .backspace = console_truetype_backspace,
/external/jline/src/src/main/resources/jline/
Dkeybindings-mac.properties23 # 8 is the ASCII code for backspace and therefor
Dkeybindings.properties23 # 8 is the ASCII code for backspace and therefor
/external/clang/utils/
Dclang-completion-mode.el240 (define-key clang-completion-mode-map [(backspace)] 'clang-backspace)
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/ime/translit/
DTransliteratorInputMethod.java522 private boolean backspace() { in backspace() method in TransliteratorInputMethod
613 case '\b': if (editing()) return backspace(); break; in handleTyped()
/external/python/cpython2/Doc/tutorial/
Dinterpreter.rst43 command line editing isn't available; you'll only be able to use backspace to
/external/e2fsprogs/doc/RelNotes/
Dv1.41.1363 Badblocks will now correctly backspace over UTF-8 characters when
/external/python/cpython3/Doc/tutorial/
Dinterpreter.rst44 editing isn't available; you'll only be able to use backspace to remove
/external/libxkbcommon/xkbcommon/test/data/rules/
Devdev997 caps:backspace = +capslock(backspace)
Devdev-xkbcommon999 caps:backspace = +capslock(backspace)
Dbase1108 caps:backspace = +capslock(backspace)
/external/python/cpython2/Doc/howto/
Dregex.rst743 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
Dcurses.rst401 keys available are the backspace key and the Enter key, which terminates the
/external/python/cpython3/Doc/howto/
Dregex.rst762 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/
Dping.sgml112 while for ever ECHO_REPLY received a backspace is printed.
/external/python/cpython2/Doc/library/
Dre.rst353 Inside a character range, ``\b`` represents the backspace character, for
421 (Note that ``\b`` is used to represent word boundaries, and means "backspace"

12