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

  /external/chromium_org/tools/site_compare/drivers/win32/
keyboard.py 14 import win32api # for keybd_event and VkKeyCode namespace
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
147 if not vk: vk = win32api.VkKeyScan(char)
mouse.py 15 import win32api # for mouse_event namespace
66 win32api.mouse_event(flags[button][down], 0, 0)
129 win32api.mouse_event(
  /external/chromium_org/tools/gyp/test/win/
gyptest-link-embed-manifest.py 18 import win32api namespace
31 self._handle = win32api.LoadLibrary(self._path)
35 win32api.FreeLibrary(self._handle)
43 return win32api.LoadResource(handle, RT_MANIFEST, resource_name)
gyptest-link-enable-uac.py 18 import win32api namespace
31 self._handle = win32api.LoadLibrary(self._path)
35 win32api.FreeLibrary(self._handle)
43 return win32api.LoadResource(handle, RT_MANIFEST, resource_name)
  /external/chromium_org/chrome/tools/build/win/
resedit.py 18 import win32api namespace
25 # The win32api-supplied UpdateResource wrapper unfortunately does not allow
69 win32api.FreeLibrary(self._module)
74 win32api.EndUpdateResource(self._update_handle, False)
88 self._module = win32api.LoadLibraryEx(
107 self._update_handle = win32api.BeginUpdateResource(self._temp_file, False)
141 for res_type in win32api.EnumResourceTypes(self.module):
145 for res_name in win32api.EnumResourceNames(self.module, res_type):
149 for res_lang in win32api.EnumResourceLanguages(self.module,
176 data = win32api.LoadResource(self.module, res_type, res_name, res_lang
    [all...]
  /external/chromium_org/tools/gyp/test/win/generator-output-different-drive/
gyptest-generator-output-different-drive.py 19 import win32api namespace
26 in_use = win32api.GetLogicalDriveStrings()
  /external/chromium_org/tools/telemetry/telemetry/core/platform/
win_platform_backend.py 12 import win32api # pylint: disable=F0401 namespace
17 win32api = None variable
28 return win32api.OpenProcess(mask, False, pid)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
msvccompiler.py 36 import win32api namespace
41 RegOpenKeyEx = win32api.RegOpenKeyEx
42 RegEnumKey = win32api.RegEnumKey
43 RegEnumValue = win32api.RegEnumValue
44 RegError = win32api.error
50 "win32api or win32con are installed.")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
msvccompiler.py 36 import win32api namespace
41 RegOpenKeyEx = win32api.RegOpenKeyEx
42 RegEnumKey = win32api.RegEnumKey
43 RegEnumValue = win32api.RegEnumValue
44 RegError = win32api.error
50 "win32api or win32con are installed.")
  /external/llvm/utils/lit/lit/
main.py 373 import win32api namespace
380 win32api.SetConsoleCtrlHandler(console_ctrl_handler, True)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
platform.py 542 # Use win32api if available
543 from win32api import RegQueryValueEx
582 import win32api namespace
583 from win32api import RegQueryValueEx, RegOpenKeyEx, \
588 # Emulate the win32api module using Python APIs
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
platform.py 542 # Use win32api if available
543 from win32api import RegQueryValueEx
582 import win32api namespace
583 from win32api import RegQueryValueEx, RegOpenKeyEx, \
588 # Emulate the win32api module using Python APIs
    [all...]

Completed in 305 milliseconds