Searched refs:IdentifierType (Results 1 – 8 of 8) sorted by relevance
/external/python/pycparser/pycparser/ |
D | c_parser.py | 325 if not isinstance(tn, c_ast.IdentifierType): 339 type.type = c_ast.IdentifierType( 346 type.type = c_ast.IdentifierType( 417 (c_ast.Struct, c_ast.Union, c_ast.IdentifierType)): 446 (c_ast.Struct, c_ast.Union, c_ast.IdentifierType)): 586 type=[c_ast.IdentifierType(['int'], 835 p[0] = c_ast.IdentifierType([p[1]], coord=self._token_coord(p, 1)) 991 decl_type = c_ast.IdentifierType(node) 1270 spec['type'] = [c_ast.IdentifierType(['int'], 1281 spec['type'] = [c_ast.IdentifierType(['int'], [all …]
|
D | _c_ast.cfg | 131 IdentifierType: [names]
|
D | c_generator.py | 416 elif typ == c_ast.IdentifierType:
|
D | c_ast.py | 714 class IdentifierType(Node): class
|
/external/python/pycparser/examples/ |
D | cdecl.py | 101 elif typ == c_ast.IdentifierType: 162 elif (typ == c_ast.IdentifierType and
|
/external/python/cffi/cffi/ |
D | cparser.py | 376 if (isinstance(decl.type.type, pycparser.c_ast.IdentifierType) and 382 pycparser.c_ast.IdentifierType) and 556 isinstance(typenode.type, pycparser.c_ast.IdentifierType) and 584 if isinstance(type, pycparser.c_ast.IdentifierType): 660 pycparser.c_ast.IdentifierType) and 772 if (isinstance(decl.type, pycparser.c_ast.IdentifierType) and
|
/external/python/pycparser/utils/internal/ |
D | memprofiling.py | 15 elif typ == IdentifierType:
|
/external/python/pycparser/tests/ |
D | test_c_parser.py | 29 elif typ == IdentifierType:
|