Home | History | Annotate | Download | only in test

Lines Matching refs:POINT

45         class POINT(Structure):
48 _fields_ = [("ul", POINT), ("lr", POINT)]
58 pt = POINT(1, 2)
64 r.lr = POINT()
129 class POINT(Structure):
132 _fields_ = [("a", POINTER(POINT)),
133 ("b", POINTER(POINT))]
135 p1 = POINT(1, 2)
149 del _pointer_type_cache[POINT]