Home
last modified time | relevance | path

Searched refs:BEPoint (Results 1 – 3 of 3) sorted by relevance

/third_party/python/Lib/ctypes/test/
Dtest_pep3118.py214 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/
Dtest_buffer.py2813 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/
Dstdtypes.rst3782 >>> class BEPoint(BigEndianStructure):
3785 >>> point = BEPoint(100, 200)