Home | History | Annotate | Download | only in test

Lines Matching refs:POINTER

100 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_short) * 2 * 3, "(3,2)&<h", (3,2,), POINTER(c_short)),
148 (POINTER(c_short * 2), "&(2)<h", None, POINTER(c_short)),
160 ## pointer to incomplete structure
162 (POINTER(Incomplete), "&B", None, POINTER(Incomplete)),
165 # pointer type to it has been created.
167 # Unfortunately the pointer format string is not fixed...
168 (POINTER(Complete), "&B", None, POINTER(Complete)),
191 (POINTER(BEPoint), "&T{>l:x:>l:y:}", None, POINTER(BEPoint)),
192 (POINTER(LEPoint), "&T{<l:x:<l:y:}", None, POINTER(LEPoint)),