Searched refs:keynames (Results 1 - 11 of 11) sorted by relevance
/third_party/alsa-utils/alsamixer/ |
H A D | curskey.c | 13 static struct curskey_key *keynames; variable 98 return curskey_find(keynames, keynames_count, name); in curskey_keycode() 102 if (keynames) { in free_ncurses_keynames() 104 free(keynames[--keynames_count].keyname); in free_ncurses_keynames() 105 free(keynames); in free_ncurses_keynames() 106 keynames = NULL; in free_ncurses_keynames() 118 keynames = ccalloc(sizeof(struct curskey_key), (KEY_MAX - KEY_MIN)); in create_ncurses_keynames() 130 keynames[keynames_count].keycode = key; in create_ncurses_keynames() 131 keynames[keynames_count].keyname = cstrdup(name); in create_ncurses_keynames() 135 keynames in create_ncurses_keynames() [all...] |
/third_party/glfw/src/ |
H A D | win32_init.c | 521 memset(_glfw.win32.keynames, 0, sizeof(_glfw.win32.keynames)); in _glfwUpdateKeyNamesWin32() 564 _glfw.win32.keynames[key], in _glfwUpdateKeyNamesWin32() 565 sizeof(_glfw.win32.keynames[key]), in _glfwUpdateKeyNamesWin32()
|
H A D | cocoa_platform.h | 175 char keynames[GLFW_KEY_LAST + 1][17]; member
|
H A D | win32_platform.h | 451 char keynames[GLFW_KEY_LAST + 1][5]; member
|
H A D | x11_window.c | 2925 const size_t count = _glfwEncodeUTF8(_glfw.x11.keynames[key], codepoint); in _glfwGetScancodeNameX11() 2929 _glfw.x11.keynames[key][count] = '\0'; in _glfwGetScancodeNameX11() 2930 return _glfw.x11.keynames[key]; in _glfwGetScancodeNameX11()
|
H A D | wl_platform.h | 467 char keynames[GLFW_KEY_LAST + 1][5]; member
|
H A D | wl_window.c | 2732 const size_t count = _glfwEncodeUTF8(_glfw.wl.keynames[key], codepoint); in _glfwGetScancodeNameWayland() 2740 _glfw.wl.keynames[key][count] = '\0'; in _glfwGetScancodeNameWayland() 2741 return _glfw.wl.keynames[key]; in _glfwGetScancodeNameWayland()
|
H A D | x11_platform.h | 578 char keynames[GLFW_KEY_LAST + 1][5]; member
|
H A D | win32_window.c | 2282 return _glfw.win32.keynames[key]; in _glfwGetScancodeNameWin32()
|
/third_party/python/PC/ |
H A D | launcher.c | 1006 wchar_t keynames[MSGSIZE]; in read_config_file() local 1013 read = GetPrivateProfileStringW(L"commands", NULL, NULL, keynames, MSGSIZE, in read_config_file() 1018 key = keynames; in read_config_file()
|
/third_party/python/Lib/idlelib/ |
H A D | editor.py | 1675 keynames = { variable 1705 # Convert certain keynames to their symbol. 1706 s = re.sub(r"\b\w+\b", lambda m: keynames.get(m.group(), m.group()), s)
|
Completed in 25 milliseconds