Lines Matching refs:integer
95 order=None, integer=False, complex=False, real_type=None): argument
103 self.integer = integer
143 integer=False, complex_name=None, complex_ok=True, argument
148 condition=condition, order=order, integer=integer,
154 integer=integer, complex=True,
165 if self.integer:
209 Type.create_type('char', integer=True)
210 Type.create_type('signed char', integer=True)
211 Type.create_type('unsigned char', integer=True)
212 Type.create_type('short int', integer=True)
213 Type.create_type('unsigned short int', integer=True)
214 Type.create_type('int', integer=True)
215 Type.create_type('unsigned int', integer=True)
216 Type.create_type('long int', integer=True)
217 Type.create_type('unsigned long int', integer=True)
218 Type.create_type('long long int', integer=True)
219 Type.create_type('unsigned long long int', integer=True)
220 Type.create_type('__int128', integer=True,
222 Type.create_type('unsigned __int128', integer=True,
224 Type.create_type('enum e', integer=True, complex_ok=False)
225 Type.create_type('_Bool', integer=True, complex_ok=False)
226 Type.create_type('bit_field', integer=True, complex_ok=False)
480 if t.integer:
559 if arg_type.integer: