Searched refs:funcspec (Results 1 – 5 of 5) sorted by relevance
/external/python/pycparser/pycparser/ |
D | _c_ast.cfg | 56 # funcspec: list function specifiers (i.e. inline in C99) 62 Decl: [name, quals, storage, funcspec, type*, init*, bitsize*]
|
D | c_generator.py | 366 if n.funcspec: s = ' '.join(n.funcspec) + ' '
|
D | c_ast.py | 383 def __init__(self, name, quals, storage, funcspec, type, init, bitsize, coord=None): argument 387 self.funcspec = funcspec
|
D | c_parser.py | 439 funcspec=spec['function'], 700 funcspec=spec['function'],
|
/external/python/pycparser/tests/ |
D | test_c_parser.py | 1476 self.assertEqual(ps2.ext[0].funcspec, ['inline'])
|