Searched refs:HIGH_BIT_MASK_SHORT (Results 1 - 4 of 4) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/platform/win/
H A DKeyEventWin.cpp40 static const unsigned short HIGH_BIT_MASK_SHORT = 0x8000; member in namespace:WebCore
223 : PlatformEvent(type, GetKeyState(VK_SHIFT) & HIGH_BIT_MASK_SHORT, GetKeyState(VK_CONTROL) & HIGH_BIT_MASK_SHORT, GetKeyState(VK_MENU) & HIGH_BIT_MASK_SHORT, false, ::GetTickCount() * 0.001)
249 shiftKey = GetKeyState(VK_SHIFT) & HIGH_BIT_MASK_SHORT;
250 ctrlKey = GetKeyState(VK_CONTROL) & HIGH_BIT_MASK_SHORT;
251 altKey = GetKeyState(VK_MENU) & HIGH_BIT_MASK_SHORT;
H A DPlatformMouseEventWin.cpp36 #define HIGH_BIT_MASK_SHORT 0x8000 macro
82 : PlatformEvent(messageToEventType(message), wParam & MK_SHIFT, wParam & MK_CONTROL, GetKeyState(VK_MENU) & HIGH_BIT_MASK_SHORT, GetKeyState(VK_MENU) & HIGH_BIT_MASK_SHORT, ::GetTickCount() * 0.001)
H A DWheelEventWin.cpp36 #define HIGH_BIT_MASK_SHORT 0x8000 macro
88 : PlatformEvent(PlatformEvent::Wheel, wParam & MK_SHIFT, wParam & MK_CONTROL, GetKeyState(VK_MENU) & HIGH_BIT_MASK_SHORT, GetKeyState(VK_MENU) & HIGH_BIT_MASK_SHORT, ::GetTickCount() * 0.001)
H A DPopupMenuWin.cpp57 #define HIGH_BIT_MASK_SHORT 0x8000 macro
854 bool altKeyPressed = GetKeyState(VK_MENU) & HIGH_BIT_MASK_SHORT;
855 bool ctrlKeyPressed = GetKeyState(VK_CONTROL) & HIGH_BIT_MASK_SHORT;

Completed in 98 milliseconds