Home
last modified time | relevance | path

Searched refs:param_decls (Results 1 – 6 of 6) sorted by relevance

/external/python/pycparser/pycparser/
Dc_ast.py658 def __init__(self, decl, param_decls, body, coord=None): argument
660 self.param_decls = param_decls
668 for i, child in enumerate(self.param_decls or []):
677 for child in (self.param_decls or []):
Dc_parser.py464 def _build_function_definition(self, spec, decl, param_decls, body): argument
476 param_decls=param_decls,
593 param_decls=p[2],
604 param_decls=p[3],
Dc_generator.py157 if n.param_decls:
158 knrdecls = ';\n'.join(self.visit(p) for p in n.param_decls)
D_c_ast.cfg122 FuncDef: [decl*, param_decls**, body*]
/external/python/pycparser/tests/
Dtest_c_parser.py1418 self.assertEqual(expand_decl(f3.param_decls[0]),
1420 self.assertEqual(expand_decl(f3.param_decls[1]),
/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFASTParserClang.cpp2284 std::vector<clang::ParmVarDecl *> param_decls; in ParseFunctionFromDWARF() local
2294 param_decls, type_quals); in ParseFunctionFromDWARF()