OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:vkey
(Results
1 - 7
of
7
) sorted by null
/external/harfbuzz/contrib/
harfbuzz-unicode-tables.c
16
combining_property_cmp(const void *
vkey
, const void *vcandidate) {
17
const uint32_t key = (uint32_t) (intptr_t)
vkey
;
48
category_property_cmp(const void *
vkey
, const void *vcandidate) {
49
const uint32_t key = (uint32_t) (intptr_t)
vkey
;
harfbuzz-unicode.c
66
script_property_cmp(const void *
vkey
, const void *vcandidate) {
67
const uint32_t key = (uint32_t) (intptr_t)
vkey
;
204
grapheme_break_property_cmp(const void *
vkey
, const void *vcandidate) {
205
const uint32_t key = (uint32_t) (intptr_t)
vkey
;
248
mirroring_property_cmp(const void *
vkey
, const void *vcandidate) {
249
const uint32_t key = (uint32_t) (intptr_t)
vkey
;
/external/qemu/distrib/sdl-1.2.12/src/video/windib/
SDL_dibevents.c
46
static SDL_keysym *TranslateKey(WPARAM
vkey
, UINT scancode, SDL_keysym *keysym, int pressed);
437
static int SDL_MapVirtualKey(int scancode, int
vkey
)
445
switch(
vkey
) {
463
return
vkey
;
479
return mvke?mvke:
vkey
;
482
static SDL_keysym *TranslateKey(WPARAM
vkey
, UINT scancode, SDL_keysym *keysym, int pressed)
490
/* Uh oh, better hope the
vkey
is close enough.. */
491
keysym->unicode =
vkey
;
497
if (SDL_ToUnicode((UINT)
vkey
, scancode, keystate, wchars, sizeof(wchars)/sizeof(wchars[0]), 0) == 1)
504
if ((
vkey
== VK_RETURN) && (scancode & 0x100))
[
all
...]
/external/valgrind/main/memcheck/tests/
unit_oset.c
71
static Word wordCmp(void*
vkey
, void* velem)
73
return *(Word*)
vkey
- *(Word*)velem;
354
static Word blockCmp(const void*
vkey
, const void* velem)
356
Addr key = *(const Addr*)
vkey
;
/external/qemu/distrib/sdl-1.2.12/src/video/wincommon/
SDL_sysevents.c
98
static int WINAPI ToUnicode9xME(UINT
vkey
, UINT scancode, BYTE *keystate, LPWSTR wchars, int wsize, UINT flags);
914
static int WINAPI ToUnicode9xME(UINT
vkey
, UINT scancode, PBYTE keystate, LPWSTR wchars, int wsize, UINT flags)
918
if (ToAsciiEx(
vkey
, scancode, keystate, (WORD*)chars, 0, GetKeyboardLayout(0)) == 1) {
/external/qemu/distrib/sdl-1.2.12/src/video/windx5/
SDL_dx5events.c
831
UINT
vkey
;
local
837
vkey
= MapVirtualKey(scancode, 1);
839
/* Uh oh, better hope the
vkey
is close enough.. */
840
keysym->unicode =
vkey
;
843
if (SDL_ToUnicode(
vkey
, scancode, keystate, wchars, sizeof(wchars)/sizeof(wchars[0]), 0) == 1)
/external/qemu/distrib/sdl-1.2.12/src/video/os2fslib/
SDL_os2fslib.c
95
static SDL_keysym *TranslateKey(int
vkey
, int chcode, int scancode, SDL_keysym *keysym, int iPressed);
236
static SDL_keysym *TranslateKey(int
vkey
, int chcode, int scancode, SDL_keysym *keysym, int iPressed)
247
keysym->unicode =
vkey
;
253
if (
vkey
== VK_SHIFT)
[
all
...]
Completed in 746 milliseconds