Searched refs:POINTER (Results 1 - 25 of 104) sorted by relevance

12345

/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/
H A Dinfinite_recursion.py106 ('p', POINTER(c_ubyte)),
113 ('max', POINTER(c_ubyte)),
114 ('q', POINTER(c_ubyte)),
115 ('pp', POINTER(POINTER(c_ubyte))),
128 ('data', POINTER(c_ubyte)),
139 ('data', POINTER(c_ubyte)),
148 ('enc', POINTER(c_ubyte)),
210 ('asn1_string', POINTER(ASN1_STRING)),
211 ('object', POINTER(ASN1_OBJEC
[all...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/
H A Dinfinite_recursion.py106 ('p', POINTER(c_ubyte)),
113 ('max', POINTER(c_ubyte)),
114 ('q', POINTER(c_ubyte)),
115 ('pp', POINTER(POINTER(c_ubyte))),
128 ('data', POINTER(c_ubyte)),
139 ('data', POINTER(c_ubyte)),
148 ('enc', POINTER(c_ubyte)),
210 ('asn1_string', POINTER(ASN1_STRING)),
211 ('object', POINTER(ASN1_OBJEC
[all...]
/prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
H A Dtest_pep3118.py100 PComplete = POINTER(Complete)
139 (POINTER(c_byte), "&<b", None, POINTER(c_byte)),
140 (POINTER(POINTER(c_long)), "&&<l", None, POINTER(POINTER(c_long))),
146 (POINTER(c_short) * 2, "(2)&<h", (2,), POINTER(c_short)),
147 (POINTER(c_shor
[all...]
H A Dtest_wintypes.py14 true = POINTER(c_int16)(c_int16(true_value))
15 value = cast(true, POINTER(wintypes.VARIANT_BOOL))
26 false = POINTER(c_int16)(c_int16(false_value))
27 value = cast(false, POINTER(wintypes.VARIANT_BOOL))
H A Dtest_memfunctions.py41 self.assertEqual(cast(a, POINTER(c_byte))[:7],
43 self.assertEqual(cast(a, POINTER(c_byte))[:7:],
45 self.assertEqual(cast(a, POINTER(c_byte))[6:-1:-1],
47 self.assertEqual(cast(a, POINTER(c_byte))[:7:2],
49 self.assertEqual(cast(a, POINTER(c_byte))[:7:7],
H A Dtest_cast.py11 ptr = cast(array, POINTER(c_int))
15 ptr = cast(array, POINTER(c_short))
27 ptr = cast(c_void_p(address), POINTER(c_int))
30 ptr = cast(address, POINTER(c_int))
39 p = cast(array, POINTER(c_char_p))
51 p = cast((c_int * 4)(1, 2, 3, 4), POINTER(c_int))
H A Dtest_libc.py17 comparefunc = CFUNCTYPE(c_int, POINTER(c_char), POINTER(c_char))
H A Dtest_stringptr.py12 _fields_ = [("str", POINTER(c_char))]
23 # POINTER(c_char) and Python string is NOT compatible
24 # POINTER(c_char) and c_buffer() is compatible
54 # POINTER(c_char) and Python string is NOT compatible
55 # POINTER(c_char) and c_buffer() is compatible
56 strchr.argtypes = POINTER(c_char), c_char
65 strchr.restype = POINTER(c_char)
/prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
H A Dtest_pep3118.py100 PComplete = POINTER(Complete)
139 (POINTER(c_byte), "&<b", None, POINTER(c_byte)),
140 (POINTER(POINTER(c_long)), "&&<l", None, POINTER(POINTER(c_long))),
146 (POINTER(c_short) * 2, "(2)&<h", (2,), POINTER(c_short)),
147 (POINTER(c_shor
[all...]
H A Dtest_wintypes.py14 true = POINTER(c_int16)(c_int16(true_value))
15 value = cast(true, POINTER(wintypes.VARIANT_BOOL))
26 false = POINTER(c_int16)(c_int16(false_value))
27 value = cast(false, POINTER(wintypes.VARIANT_BOOL))
H A Dtest_memfunctions.py41 self.assertEqual(cast(a, POINTER(c_byte))[:7],
43 self.assertEqual(cast(a, POINTER(c_byte))[:7:],
45 self.assertEqual(cast(a, POINTER(c_byte))[6:-1:-1],
47 self.assertEqual(cast(a, POINTER(c_byte))[:7:2],
49 self.assertEqual(cast(a, POINTER(c_byte))[:7:7],
H A Dtest_cast.py11 ptr = cast(array, POINTER(c_int))
15 ptr = cast(array, POINTER(c_short))
27 ptr = cast(c_void_p(address), POINTER(c_int))
30 ptr = cast(address, POINTER(c_int))
39 p = cast(array, POINTER(c_char_p))
51 p = cast((c_int * 4)(1, 2, 3, 4), POINTER(c_int))
H A Dtest_libc.py17 comparefunc = CFUNCTYPE(c_int, POINTER(c_char), POINTER(c_char))
H A Dtest_stringptr.py12 _fields_ = [("str", POINTER(c_char))]
23 # POINTER(c_char) and Python string is NOT compatible
24 # POINTER(c_char) and c_buffer() is compatible
54 # POINTER(c_char) and Python string is NOT compatible
55 # POINTER(c_char) and c_buffer() is compatible
56 strchr.argtypes = POINTER(c_char), c_char
65 strchr.restype = POINTER(c_char)
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
H A Dtest_pep3118.py100 PComplete = POINTER(Complete)
139 (POINTER(c_byte), "&<b", None, POINTER(c_byte)),
140 (POINTER(POINTER(c_long)), "&&<l", None, POINTER(POINTER(c_long))),
146 (POINTER(c_short) * 2, "(2)&<h", (2,), POINTER(c_short)),
147 (POINTER(c_shor
[all...]
H A Dtest_wintypes.py14 true = POINTER(c_int16)(c_int16(true_value))
15 value = cast(true, POINTER(wintypes.VARIANT_BOOL))
26 false = POINTER(c_int16)(c_int16(false_value))
27 value = cast(false, POINTER(wintypes.VARIANT_BOOL))
H A Dtest_memfunctions.py41 self.assertEqual(cast(a, POINTER(c_byte))[:7],
43 self.assertEqual(cast(a, POINTER(c_byte))[:7:],
45 self.assertEqual(cast(a, POINTER(c_byte))[6:-1:-1],
47 self.assertEqual(cast(a, POINTER(c_byte))[:7:2],
49 self.assertEqual(cast(a, POINTER(c_byte))[:7:7],
H A Dtest_cast.py11 ptr = cast(array, POINTER(c_int))
15 ptr = cast(array, POINTER(c_short))
27 ptr = cast(c_void_p(address), POINTER(c_int))
30 ptr = cast(address, POINTER(c_int))
39 p = cast(array, POINTER(c_char_p))
51 p = cast((c_int * 4)(1, 2, 3, 4), POINTER(c_int))
H A Dtest_libc.py17 comparefunc = CFUNCTYPE(c_int, POINTER(c_char), POINTER(c_char))
H A Dtest_stringptr.py12 _fields_ = [("str", POINTER(c_char))]
23 # POINTER(c_char) and Python string is NOT compatible
24 # POINTER(c_char) and c_buffer() is compatible
54 # POINTER(c_char) and Python string is NOT compatible
55 # POINTER(c_char) and c_buffer() is compatible
56 strchr.argtypes = POINTER(c_char), c_char
65 strchr.restype = POINTER(c_char)
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
H A Dtest_pep3118.py100 PComplete = POINTER(Complete)
139 (POINTER(c_byte), "&<b", None, POINTER(c_byte)),
140 (POINTER(POINTER(c_long)), "&&<l", None, POINTER(POINTER(c_long))),
146 (POINTER(c_short) * 2, "(2)&<h", (2,), POINTER(c_short)),
147 (POINTER(c_shor
[all...]
H A Dtest_wintypes.py14 true = POINTER(c_int16)(c_int16(true_value))
15 value = cast(true, POINTER(wintypes.VARIANT_BOOL))
26 false = POINTER(c_int16)(c_int16(false_value))
27 value = cast(false, POINTER(wintypes.VARIANT_BOOL))
H A Dtest_memfunctions.py41 self.assertEqual(cast(a, POINTER(c_byte))[:7],
43 self.assertEqual(cast(a, POINTER(c_byte))[:7:],
45 self.assertEqual(cast(a, POINTER(c_byte))[6:-1:-1],
47 self.assertEqual(cast(a, POINTER(c_byte))[:7:2],
49 self.assertEqual(cast(a, POINTER(c_byte))[:7:7],
H A Dtest_cast.py11 ptr = cast(array, POINTER(c_int))
15 ptr = cast(array, POINTER(c_short))
27 ptr = cast(c_void_p(address), POINTER(c_int))
30 ptr = cast(address, POINTER(c_int))
39 p = cast(array, POINTER(c_char_p))
51 p = cast((c_int * 4)(1, 2, 3, 4), POINTER(c_int))
H A Dtest_libc.py17 comparefunc = CFUNCTYPE(c_int, POINTER(c_char), POINTER(c_char))

Completed in 8583 milliseconds

12345