Searched refs:RawFunctionType (Results 1 – 3 of 3) sorted by relevance
/external/python/cffi/testing/cffi0/ |
D | test_model.py | 18 fn_type = RawFunctionType([], int_type, False) 22 fn_type = RawFunctionType([int_type], int_type, False) 24 fn_type = RawFunctionType([int_type] * 2, int_type, False) 27 fn_type = RawFunctionType([int_type], int_type, True) 32 fn_type = RawFunctionType([int_type], res_type, True)
|
/external/python/cffi/cffi/ |
D | cparser.py | 461 assert isinstance(tp, model.RawFunctionType) 545 if isinstance(type, model.RawFunctionType): 680 return model.RawFunctionType(tuple(args), result, ellipsis, abi) 685 elif isinstance(type, model.RawFunctionType):
|
D | model.py | 224 class RawFunctionType(BaseFunctionType): class 258 return RawFunctionType(self.args, self.result, self.ellipsis, self.abi)
|