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

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_functions.py 342 class S2H(Structure):
345 dll.ret_2h_func.restype = S2H
346 dll.ret_2h_func.argtypes = [S2H]
347 inp = S2H(99, 88)
348 s2h = dll.ret_2h_func(inp)
349 self.assertEqual((s2h.x, s2h.y), (99*2, 88*3))
353 class S2H(Structure):
357 windll.s_ret_2h_func.restype = S2H
358 windll.s_ret_2h_func.argtypes = [S2H]
    [all...]
test_as_parameter.py 166 class S2H(Structure):
169 dll.ret_2h_func.restype = S2H
170 dll.ret_2h_func.argtypes = [S2H]
171 inp = S2H(99, 88)
172 s2h = dll.ret_2h_func(self.wrap(inp))
173 self.assertEqual((s2h.x, s2h.y), (99*2, 88*3))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_functions.py 342 class S2H(Structure):
345 dll.ret_2h_func.restype = S2H
346 dll.ret_2h_func.argtypes = [S2H]
347 inp = S2H(99, 88)
348 s2h = dll.ret_2h_func(inp)
349 self.assertEqual((s2h.x, s2h.y), (99*2, 88*3))
353 class S2H(Structure):
357 windll.s_ret_2h_func.restype = S2H
358 windll.s_ret_2h_func.argtypes = [S2H]
    [all...]
test_as_parameter.py 166 class S2H(Structure):
169 dll.ret_2h_func.restype = S2H
170 dll.ret_2h_func.argtypes = [S2H]
171 inp = S2H(99, 88)
172 s2h = dll.ret_2h_func(self.wrap(inp))
173 self.assertEqual((s2h.x, s2h.y), (99*2, 88*3))

Completed in 49 milliseconds