Searched refs:FunctionPtrType (Results 1 – 5 of 5) sorted by relevance
/external/python/cffi/testing/cffi0/ |
D | test_model.py | 31 res_type = FunctionPtrType([int_type], int_type, True) 37 fn_type = FunctionPtrType([], int_type, False) 41 fn_type = FunctionPtrType([int_type], int_type, False) 43 fn_type = FunctionPtrType([int_type] * 2, int_type, False) 46 fn_type = FunctionPtrType([int_type], int_type, True) 94 fn_type = FunctionPtrType([], PrimitiveType("int"), False)
|
/external/python/cffi/cffi/ |
D | vengine_cpy.py | 265 elif isinstance(tp, model.FunctionPtrType): 306 elif isinstance(tp, (model.PointerType, model.FunctionPtrType)): 337 assert isinstance(tp, model.FunctionPtrType) 348 assert isinstance(tp, model.FunctionPtrType)
|
D | vengine_gen.py | 141 assert isinstance(tp, model.FunctionPtrType) 188 assert isinstance(tp, model.FunctionPtrType) 212 tp = model.FunctionPtrType(tuple(indirect_args),
|
D | recompiler.py | 153 model.FunctionPtrType)) 201 if isinstance(tp, model.FunctionPtrType): 550 elif isinstance(tp, model.FunctionPtrType): 597 elif isinstance(tp, (model.PointerType, model.FunctionPtrType)): 650 assert isinstance(tp, model.FunctionPtrType) 1203 assert isinstance(tp, model.FunctionPtrType)
|
D | model.py | 236 return FunctionPtrType(self.args, self.result, self.ellipsis, self.abi) 239 class FunctionPtrType(BaseFunctionType): class
|