Searched refs:BEPoint (Results 1 – 3 of 3) sorted by relevance
/third_party/python/Lib/ctypes/test/ |
D | test_pep3118.py | 214 class BEPoint(BigEndianStructure): class 226 (BEPoint, "T{>l:x:>l:y:}".replace('l', s_long), (), BEPoint), 228 (POINTER(BEPoint), "&T{>l:x:>l:y:}".replace('l', s_long), (), POINTER(BEPoint)),
|
/third_party/python/Lib/test/ |
D | test_buffer.py | 2813 class BEPoint(ctypes.BigEndianStructure): class 2815 point = BEPoint(100, 200.1) 3220 class BEPoint(ctypes.BigEndianStructure): class 3222 point = BEPoint(100, 200) 3956 class BEPoint(ctypes.BigEndianStructure): class 3958 point = BEPoint(100, 200)
|
/third_party/python/Doc/library/ |
D | stdtypes.rst | 3782 >>> class BEPoint(BigEndianStructure): 3785 >>> point = BEPoint(100, 200)
|