HomeSort by relevance Sort by last modified time
    Searched refs:c_long (Results 1 - 25 of 151) sorted by null

1 2 3 4 5 6 7

  /external/python/cpython3/Lib/ctypes/test/
test_pep3118.py 83 _fields_ = [("x", c_long), ("y", c_long)]
87 _fields_ = [("x", c_long), ("y", c_long)]
91 Point2._fields_ = [("x", c_long), ("y", c_long)]
100 _fields_ = [("x", c_long * 3 * 2), ("y", Point * 4)]
108 Complete._fields_ = [("a", c_long)]
126 # c_int and c_uint may be aliases to c_long
130 (c_long, "<l", (), c_long)
    [all...]
test_parameters.py 82 from ctypes import c_short, c_uint, c_int, c_long, POINTER, pointer
93 if c_int != c_long:
94 self.assertRaises(TypeError, LPINT.from_param, pointer(c_long(42)))
101 from ctypes import c_short, c_uint, c_int, c_long, POINTER, byref
107 if c_int != c_long:
108 self.assertRaises(TypeError, LPINT.from_param, byref(c_long(22)))
113 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byref
119 if c_int != c_long:
120 self.assertRaises(TypeError, LPLPINT.from_param, byref(pointer(c_long(22))))
124 from ctypes import c_short, c_uint, c_int, c_long, POINTE
    [all...]
test_win32.py 103 _fields_ = [("x", c_long),
104 ("y", c_long)]
107 _fields_ = [("left", c_long),
108 ("top", c_long),
109 ("right", c_long),
110 ("bottom", c_long)]
115 left = c_long.in_dll(dll, 'left')
116 top = c_long.in_dll(dll, 'top')
117 right = c_long.in_dll(dll, 'right')
118 bottom = c_long.in_dll(dll, 'bottom'
    [all...]
test_repr.py 5 for base in [c_byte, c_short, c_int, c_long, c_longlong,
  /external/python/cpython2/Lib/ctypes/
wintypes.py 16 BOOL = c_long
25 LONG = c_long
41 if sizeof(c_long) == sizeof(c_void_p):
43 LPARAM = c_long
97 _fields_ = [("left", c_long),
98 ("top", c_long),
99 ("right", c_long),
100 ("bottom", c_long)]
115 _fields_ = [("x", c_long),
116 ("y", c_long)]
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/
wintypes.py 20 BOOL = c_long
29 LONG = c_long
45 if sizeof(c_long) == sizeof(c_void_p):
47 LPARAM = c_long
101 _fields_ = [("left", c_long),
102 ("top", c_long),
103 ("right", c_long),
104 ("bottom", c_long)]
119 _fields_ = [("x", c_long),
120 ("y", c_long)]
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/
wintypes.py 20 BOOL = c_long
29 LONG = c_long
45 if sizeof(c_long) == sizeof(c_void_p):
47 LPARAM = c_long
101 _fields_ = [("left", c_long),
102 ("top", c_long),
103 ("right", c_long),
104 ("bottom", c_long)]
119 _fields_ = [("x", c_long),
120 ("y", c_long)]
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/
wintypes.py 20 BOOL = c_long
29 LONG = c_long
45 if sizeof(c_long) == sizeof(c_void_p):
47 LPARAM = c_long
101 _fields_ = [("left", c_long),
102 ("top", c_long),
103 ("right", c_long),
104 ("bottom", c_long)]
119 _fields_ = [("x", c_long),
120 ("y", c_long)]
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/
wintypes.py 20 BOOL = c_long
29 LONG = c_long
45 if sizeof(c_long) == sizeof(c_void_p):
47 LPARAM = c_long
101 _fields_ = [("left", c_long),
102 ("top", c_long),
103 ("right", c_long),
104 ("bottom", c_long)]
119 _fields_ = [("x", c_long),
120 ("y", c_long)]
    [all...]
  /external/python/cpython2/Lib/ctypes/test/
test_pep3118.py 79 _fields_ = [("x", c_long), ("y", c_long)]
83 _fields_ = [("x", c_long), ("y", c_long)]
87 Point2._fields_ = [("x", c_long), ("y", c_long)]
96 _fields_ = [("x", c_long * 3 * 2), ("y", Point * 4)]
105 Complete._fields_ = [("a", c_long)]
123 # c_int and c_uint may be aliases to c_long
127 (c_long, "<l", None, c_long)
    [all...]
test_win32.py 82 _fields_ = [("x", c_long),
83 ("y", c_long)]
86 _fields_ = [("left", c_long),
87 ("top", c_long),
88 ("right", c_long),
89 ("bottom", c_long)]
94 left = c_long.in_dll(dll, 'left')
95 top = c_long.in_dll(dll, 'top')
96 right = c_long.in_dll(dll, 'right')
97 bottom = c_long.in_dll(dll, 'bottom'
    [all...]
test_parameters.py 87 from ctypes import c_short, c_uint, c_int, c_long, POINTER, pointer
98 if c_int != c_long:
99 self.assertRaises(TypeError, LPINT.from_param, pointer(c_long(42)))
106 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byref
112 if c_int != c_long:
113 self.assertRaises(TypeError, LPINT.from_param, byref(c_long(22)))
118 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byref
124 if c_int != c_long:
125 self.assertRaises(TypeError, LPLPINT.from_param, byref(pointer(c_long(22))))
129 from ctypes import c_short, c_uint, c_int, c_long, POINTE
    [all...]
test_repr.py 5 for base in [c_byte, c_short, c_int, c_long, c_longlong,
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_pep3118.py 79 _fields_ = [("x", c_long), ("y", c_long)]
83 _fields_ = [("x", c_long), ("y", c_long)]
87 Point2._fields_ = [("x", c_long), ("y", c_long)]
101 Complete._fields_ = [("a", c_long)]
119 # c_int and c_uint may be aliases to c_long
123 (c_long, "<l", None, c_long),
    [all...]
test_win32.py 77 _fields_ = [("x", c_long),
78 ("y", c_long)]
81 _fields_ = [("left", c_long),
82 ("top", c_long),
83 ("right", c_long),
84 ("bottom", c_long)]
test_parameters.py 91 from ctypes import c_short, c_uint, c_int, c_long, POINTER, pointer
102 if c_int != c_long:
103 self.assertRaises(TypeError, LPINT.from_param, pointer(c_long(42)))
110 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byref
116 if c_int != c_long:
117 self.assertRaises(TypeError, LPINT.from_param, byref(c_long(22)))
122 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byref
128 if c_int != c_long:
129 self.assertRaises(TypeError, LPLPINT.from_param, byref(pointer(c_long(22))))
133 from ctypes import c_short, c_uint, c_int, c_long, POINTE
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_pep3118.py 79 _fields_ = [("x", c_long), ("y", c_long)]
83 _fields_ = [("x", c_long), ("y", c_long)]
87 Point2._fields_ = [("x", c_long), ("y", c_long)]
101 Complete._fields_ = [("a", c_long)]
119 # c_int and c_uint may be aliases to c_long
123 (c_long, "<l", None, c_long),
    [all...]
test_win32.py 77 _fields_ = [("x", c_long),
78 ("y", c_long)]
81 _fields_ = [("left", c_long),
82 ("top", c_long),
83 ("right", c_long),
84 ("bottom", c_long)]
test_parameters.py 91 from ctypes import c_short, c_uint, c_int, c_long, POINTER, pointer
102 if c_int != c_long:
103 self.assertRaises(TypeError, LPINT.from_param, pointer(c_long(42)))
110 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byref
116 if c_int != c_long:
117 self.assertRaises(TypeError, LPINT.from_param, byref(c_long(22)))
122 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byref
128 if c_int != c_long:
129 self.assertRaises(TypeError, LPLPINT.from_param, byref(pointer(c_long(22))))
133 from ctypes import c_short, c_uint, c_int, c_long, POINTE
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_pep3118.py 79 _fields_ = [("x", c_long), ("y", c_long)]
83 _fields_ = [("x", c_long), ("y", c_long)]
87 Point2._fields_ = [("x", c_long), ("y", c_long)]
101 Complete._fields_ = [("a", c_long)]
119 # c_int and c_uint may be aliases to c_long
123 (c_long, "<l", None, c_long),
    [all...]
test_win32.py 77 _fields_ = [("x", c_long),
78 ("y", c_long)]
81 _fields_ = [("left", c_long),
82 ("top", c_long),
83 ("right", c_long),
84 ("bottom", c_long)]
test_parameters.py 91 from ctypes import c_short, c_uint, c_int, c_long, POINTER, pointer
102 if c_int != c_long:
103 self.assertRaises(TypeError, LPINT.from_param, pointer(c_long(42)))
110 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byref
116 if c_int != c_long:
117 self.assertRaises(TypeError, LPINT.from_param, byref(c_long(22)))
122 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byref
128 if c_int != c_long:
129 self.assertRaises(TypeError, LPLPINT.from_param, byref(pointer(c_long(22))))
133 from ctypes import c_short, c_uint, c_int, c_long, POINTE
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_pep3118.py 79 _fields_ = [("x", c_long), ("y", c_long)]
83 _fields_ = [("x", c_long), ("y", c_long)]
87 Point2._fields_ = [("x", c_long), ("y", c_long)]
101 Complete._fields_ = [("a", c_long)]
119 # c_int and c_uint may be aliases to c_long
123 (c_long, "<l", None, c_long),
    [all...]
test_win32.py 77 _fields_ = [("x", c_long),
78 ("y", c_long)]
81 _fields_ = [("left", c_long),
82 ("top", c_long),
83 ("right", c_long),
84 ("bottom", c_long)]
test_parameters.py 91 from ctypes import c_short, c_uint, c_int, c_long, POINTER, pointer
102 if c_int != c_long:
103 self.assertRaises(TypeError, LPINT.from_param, pointer(c_long(42)))
110 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byref
116 if c_int != c_long:
117 self.assertRaises(TypeError, LPINT.from_param, byref(c_long(22)))
122 from ctypes import c_short, c_uint, c_int, c_long, pointer, POINTER, byref
128 if c_int != c_long:
129 self.assertRaises(TypeError, LPLPINT.from_param, byref(pointer(c_long(22))))
133 from ctypes import c_short, c_uint, c_int, c_long, POINTE
    [all...]

Completed in 271 milliseconds

1 2 3 4 5 6 7