Searched refs:PtrDecl (Results 1 – 8 of 8) sorted by relevance
/external/python/pycparser/examples/ |
D | cdecl.py | 103 elif typ == c_ast.PtrDecl: 145 if typ in (c_ast.Decl, c_ast.TypeDecl, c_ast.PtrDecl, c_ast.ArrayDecl):
|
/external/python/pycparser/pycparser/ |
D | c_generator.py | 393 isinstance(modifiers[i - 1], c_ast.PtrDecl)): 401 isinstance(modifiers[i - 1], c_ast.PtrDecl)): 404 elif isinstance(modifier, c_ast.PtrDecl): 418 elif typ in (c_ast.ArrayDecl, c_ast.PtrDecl, c_ast.FuncDecl):
|
D | _c_ast.cfg | 151 PtrDecl: [quals, type*]
|
D | c_ast.py | 831 class PtrDecl(Node): class
|
D | c_parser.py | 1219 nested_type = c_ast.PtrDecl(quals=p[2] or [], type=None, coord=coord)
|
/external/python/pycparser/utils/internal/ |
D | memprofiling.py | 38 elif typ == PtrDecl:
|
/external/python/cffi/cffi/ |
D | cparser.py | 379 elif (isinstance(decl.type, pycparser.c_ast.PtrDecl) and 535 pycparser.c_ast.PtrDecl)): 574 if isinstance(typenode, pycparser.c_ast.PtrDecl):
|
/external/python/pycparser/tests/ |
D | test_c_parser.py | 52 elif typ == PtrDecl: 496 self.assertIsInstance(pdecl, PtrDecl)
|