Home
last modified time | relevance | path

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

/external/python/cffi/testing/cffi0/
Dtest_model.py18 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/
Dcparser.py461 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):
Dmodel.py224 class RawFunctionType(BaseFunctionType): class
258 return RawFunctionType(self.args, self.result, self.ellipsis, self.abi)