/third_party/flutter/skia/tools/sk_app/unix/ |
D | Window_unix.cpp | 233 static ModifierKey get_modifiers(const XEvent& event) { in get_modifiers() function 271 InputState::kDown, get_modifiers(event)); in handleEvent() 274 this->onMouseWheel(1.0f, get_modifiers(event)); in handleEvent() 277 this->onMouseWheel(-1.0f, get_modifiers(event)); in handleEvent() 285 InputState::kUp, get_modifiers(event)); in handleEvent() 291 InputState::kMove, get_modifiers(event)); in handleEvent() 299 if (!this->onKey(key, InputState::kDown, get_modifiers(event))) { in handleEvent() 308 (void) this->onChar((SkUnichar) uni, get_modifiers(event)); in handleEvent() 318 get_modifiers(event)); in handleEvent()
|
/third_party/flutter/skia/tools/sk_app/win/ |
D | Window_win.cpp | 163 static ModifierKey get_modifiers(UINT message, WPARAM wParam, LPARAM lParam) { in get_modifiers() function 243 get_modifiers(message, wParam, lParam)); in WndProc() 249 get_modifiers(message, wParam, lParam)); in WndProc() 255 get_modifiers(message, wParam, lParam)); in WndProc() 261 get_modifiers(message, wParam, lParam)); in WndProc() 281 get_modifiers(message, wParam, lParam)); in WndProc() 297 get_modifiers(message, wParam, lParam)); in WndProc() 302 get_modifiers(message, wParam, lParam)); in WndProc()
|
/third_party/skia/tools/sk_app/win/ |
D | Window_win.cpp | 163 static skui::ModifierKey get_modifiers(UINT message, WPARAM wParam, LPARAM lParam) { in get_modifiers() function 242 get_modifiers(message, wParam, lParam)); in WndProc() 248 eventHandled = window->onChar(c, get_modifiers(message, wParam, lParam)); in WndProc() 254 get_modifiers(message, wParam, lParam)); in WndProc() 260 get_modifiers(message, wParam, lParam)); in WndProc() 280 get_modifiers(message, wParam, lParam)); in WndProc() 296 get_modifiers(message, wParam, lParam)); in WndProc() 301 get_modifiers(message, wParam, lParam)); in WndProc()
|
/third_party/skia/tools/sk_app/unix/ |
D | Window_unix.cpp | 234 static skui::ModifierKey get_modifiers(const XEvent& event) { in get_modifiers() function 272 skui::InputState::kDown, get_modifiers(event)); in handleEvent() 275 this->onMouseWheel(1.0f, get_modifiers(event)); in handleEvent() 278 this->onMouseWheel(-1.0f, get_modifiers(event)); in handleEvent() 286 skui::InputState::kUp, get_modifiers(event)); in handleEvent() 292 skui::InputState::kMove, get_modifiers(event)); in handleEvent() 300 if (!this->onKey(key, skui::InputState::kDown, get_modifiers(event))) { in handleEvent() 309 (void) this->onChar((SkUnichar) uni, get_modifiers(event)); in handleEvent() 319 get_modifiers(event)); in handleEvent()
|
/third_party/flutter/skia/tools/sk_app/mac/ |
D | Window_mac.mm | 233 static ModifierKey get_modifiers(const NSEvent* event) { function 318 if (!fWindow->onKey(key, InputState::kDown, get_modifiers(event))) { 331 (void) fWindow->onChar((SkUnichar) charBuffer[i], get_modifiers(event)); 340 (void) fWindow->onKey(key, InputState::kUp, get_modifiers(event)); 348 get_modifiers(event)); 355 get_modifiers(event)); 366 get_modifiers(event)); 371 fWindow->onMouseWheel([event scrollingDeltaY], get_modifiers(event));
|
/third_party/python/Lib/idlelib/idle_test/ |
D | test_config_key.py | 28 get_modifiers = Func() variable in ValidationTest.Validator 81 self.dialog.get_modifiers.result = ['Shift'] 84 self.dialog.get_modifiers.result = [] 92 self.dialog.get_modifiers.result = mods 95 self.dialog.get_modifiers.result = [] 196 gm = dialog.get_modifiers
|
/third_party/flutter/skia/tools/sk_app/ios/ |
D | Window_ios.cpp | 139 static ModifierKey get_modifiers(const SDL_Event& event) { in get_modifiers() function 219 if (!this->onKey(key, InputState::kDown, get_modifiers(event))) { in handleEvent() 231 get_modifiers(event)); in handleEvent() 238 (void) this->onChar(c, get_modifiers(event)); in handleEvent()
|
/third_party/python/Lib/idlelib/ |
D | config_key.py | 240 keylist = modifiers = self.get_modifiers() 247 def get_modifiers(self): member in GetKeysDialog 283 modifiers = self.get_modifiers()
|
/third_party/skia/tools/sk_app/mac/ |
D | Window_mac.mm | 249 static skui::ModifierKey get_modifiers(const NSEvent* event) { function 336 skui::ModifierKey modifiers = get_modifiers(event);
|