OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HIGH_BIT_MASK_SHORT
(Results
1 - 6
of
6
) sorted by null
/external/webkit/Source/WebCore/platform/chromium/
PlatformKeyboardEventChromium.cpp
41
static const unsigned short
HIGH_BIT_MASK_SHORT
= 0x8000;
92
shiftKey = GetKeyState(VK_SHIFT) &
HIGH_BIT_MASK_SHORT
;
93
ctrlKey = GetKeyState(VK_CONTROL) &
HIGH_BIT_MASK_SHORT
;
94
altKey = GetKeyState(VK_MENU) &
HIGH_BIT_MASK_SHORT
;
/external/webkit/Source/WebCore/platform/win/
KeyEventWin.cpp
36
static const unsigned short
HIGH_BIT_MASK_SHORT
= 0x8000;
198
, m_shiftKey(GetKeyState(VK_SHIFT) &
HIGH_BIT_MASK_SHORT
)
199
, m_ctrlKey(GetKeyState(VK_CONTROL) &
HIGH_BIT_MASK_SHORT
)
200
, m_altKey(GetKeyState(VK_MENU) &
HIGH_BIT_MASK_SHORT
)
219
shiftKey = GetKeyState(VK_SHIFT) &
HIGH_BIT_MASK_SHORT
;
220
ctrlKey = GetKeyState(VK_CONTROL) &
HIGH_BIT_MASK_SHORT
;
221
altKey = GetKeyState(VK_MENU) &
HIGH_BIT_MASK_SHORT
;
PlatformMouseEventWin.cpp
36
#define
HIGH_BIT_MASK_SHORT
0x8000
86
, m_altKey(GetKeyState(VK_MENU) &
HIGH_BIT_MASK_SHORT
)
WheelEventWin.cpp
36
#define
HIGH_BIT_MASK_SHORT
0x8000
96
, m_altKey(GetKeyState(VK_MENU) &
HIGH_BIT_MASK_SHORT
)
/external/webkit/Tools/MiniBrowser/win/
BrowserView.cpp
33
static const unsigned short
HIGH_BIT_MASK_SHORT
= 0x8000;
85
bool isShiftKeyDown = ::GetKeyState(VK_SHIFT) &
HIGH_BIT_MASK_SHORT
;
/external/webkit/Source/WebKit2/Shared/win/
WebEventFactory.cpp
37
static const unsigned short
HIGH_BIT_MASK_SHORT
= 0x8000;
111
if (::GetKeyState(VK_MENU) &
HIGH_BIT_MASK_SHORT
)
119
if (::GetKeyState(VK_CONTROL) &
HIGH_BIT_MASK_SHORT
)
121
if (::GetKeyState(VK_SHIFT) &
HIGH_BIT_MASK_SHORT
)
123
if (::GetKeyState(VK_MENU) &
HIGH_BIT_MASK_SHORT
)
Completed in 48 milliseconds