Home
last modified time | relevance | path

Searched refs:PtrDecl (Results 1 – 8 of 8) sorted by relevance

/external/python/pycparser/examples/
Dcdecl.py103 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/
Dc_generator.py393 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.cfg151 PtrDecl: [quals, type*]
Dc_ast.py831 class PtrDecl(Node): class
Dc_parser.py1219 nested_type = c_ast.PtrDecl(quals=p[2] or [], type=None, coord=coord)
/external/python/pycparser/utils/internal/
Dmemprofiling.py38 elif typ == PtrDecl:
/external/python/cffi/cffi/
Dcparser.py379 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/
Dtest_c_parser.py52 elif typ == PtrDecl:
496 self.assertIsInstance(pdecl, PtrDecl)