Searched refs:FormalList (Results 1 – 4 of 4) sorted by relevance
/external/bcc/src/cc/frontends/b/ |
D | parser.h | 48 IdentExprNode *id, FormalList *formals, BlockStmtNode *body); 50 StmtNode * struct_add(IdentExprNode *type, FormalList *formals); 51 StmtNode * result_add(int token, IdentExprNode *id, FormalList *formals, BlockStmtNode *body);
|
D | node.h | 449 typedef vector<VariableDeclStmtNode::Ptr> FormalList; typedef 474 FormalList stmts_; 477 StructDeclStmtNode(IdentExprNode::Ptr id, FormalList&& stmts = FormalList()) 555 FormalList formals_; 557 MatchDeclStmtNode(IdentExprNode::Ptr id, FormalList&& formals, BlockStmtNode::Ptr block) in MatchDeclStmtNode() 566 FormalList formals_; 568 MissDeclStmtNode(IdentExprNode::Ptr id, FormalList&& formals, BlockStmtNode::Ptr block) in MissDeclStmtNode() 577 FormalList formals_; 579 FailureDeclStmtNode(IdentExprNode::Ptr id, FormalList&& formals, BlockStmtNode::Ptr block) in FailureDeclStmtNode() 610 FormalList formals_; [all …]
|
D | parser.cc | 148 StmtNode * Parser::struct_add(IdentExprNode *type, FormalList *formals) { in struct_add() 174 StmtNode * Parser::result_add(int token, IdentExprNode *id, FormalList *formals, BlockStmtNode *bod… in result_add() 193 IdentExprNode *id, FormalList *formals, BlockStmtNode *body) { in func_add()
|
D | parser.yy | 66 FormalList *formals; 228 { $$ = new FormalList; $$->push_back(VariableDeclStmtNode::Ptr($2)); } 281 { $$ = parser.result_add($1, $2, new FormalList, $6); $6->scope_ = $3; 292 …{ $$ = new FormalList; $$->push_back(VariableDeclStmtNode::Ptr(parser.variable_add(nullptr, $2)));…
|