HomeSort by relevance Sort by last modified time
    Searched refs:win32con (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/tools/site_compare/drivers/win32/
keyboard.py 15 import win32con # Windows constants namespace
19 # from win32con import VK_SHIFT, VK_CONTROL, VK_MENU, VK_LWIN, KEYEVENTF_KEYUP
21 # This is a violation of the style guide but having win32con. everywhere
22 # is just plain ugly, and win32con is a huge import for just a handful of
40 win32api.keybd_event(key, 0, (not down) * win32con.KEYEVENTF_KEYUP)
90 shift_held = win32api.GetAsyncKeyState(win32con.VK_SHIFT ) < 0
91 ctrl_held = win32api.GetAsyncKeyState(win32con.VK_CONTROL) < 0
92 alt_held = win32api.GetAsyncKeyState(win32con.VK_MENU ) < 0
108 PressKey(True, win32con.VK_MENU)
111 PressKey(False, win32con.VK_MENU
    [all...]
mouse.py 16 import win32con # Windows constants namespace
60 'left': (win32con.MOUSEEVENTF_LEFTUP, win32con.MOUSEEVENTF_LEFTDOWN),
61 'middle': (win32con.MOUSEEVENTF_MIDDLEUP, win32con.MOUSEEVENTF_MIDDLEDOWN),
62 'right': (win32con.MOUSEEVENTF_RIGHTUP, win32con.MOUSEEVENTF_RIGHTDOWN)
130 win32con.MOUSEEVENTF_MOVE|win32con.MOUSEEVENTF_ABSOLUTE,
  /external/chromium_org/chrome/test/mini_installer/
quit_chrome.py 16 import win32con namespace
42 win32gui.PostMessage(hwnd, win32con.WM_CLOSE, 0, 0)
  /external/chromium_org/tools/telemetry/telemetry/core/platform/power_monitor/
ippet_power_monitor.py 24 import win32con # pylint: disable=F0401 namespace
28 win32con = None variable
131 if exit_code == win32con.STILL_ACTIVE:
159 if exit_code == win32con.STILL_ACTIVE:
  /external/chromium_org/tools/telemetry/telemetry/core/platform/
win_platform_backend.py 33 import win32con # pylint: disable=F0401 namespace
41 win32con = None variable
78 if win32process.GetExitCodeProcess(process_handle) == win32con.STILL_ACTIVE:
236 mask = (win32con.PROCESS_QUERY_INFORMATION |
237 win32con.PROCESS_VM_READ)
287 win32security.OpenProcessToken(handle, win32con.TOKEN_QUERY)) as token:
305 nShow=win32con.SW_HIDE)
  /external/chromium_org/chrome/tools/build/win/
resedit.py 19 import win32con namespace
89 input_file, None, win32con.LOAD_LIBRARY_AS_DATAFILE)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
msvccompiler.py 37 import win32con namespace
39 hkey_mod = win32con
50 "win32api or win32con are installed.")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
msvccompiler.py 37 import win32con namespace
39 hkey_mod = win32con
50 "win32api or win32con are installed.")
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
platform.py 585 from win32con import HKEY_LOCAL_MACHINE, VER_PLATFORM_WIN32_NT, \
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
platform.py 585 from win32con import HKEY_LOCAL_MACHINE, VER_PLATFORM_WIN32_NT, \
    [all...]

Completed in 511 milliseconds