Searched refs:unary_expression (Results 1 – 2 of 2) sorted by relevance
206 %type <l_node> unary_expression445 unary_expression:447 | DT_TOK_ADDADD unary_expression { $$ = OP1(DT_TOK_PREINC, $2); }448 | DT_TOK_SUBSUB unary_expression { $$ = OP1(DT_TOK_PREDEC, $2); }450 | DT_TOK_SIZEOF unary_expression { $$ = OP1(DT_TOK_SIZEOF, $2); }454 | DT_TOK_STRINGOF unary_expression {468 unary_expression586 | unary_expression assignment_operator assignment_expression {
574 static struct token *unary_expression(struct token *token, struct expression **tree);586 return unary_expression(token, &expr->cast_expression); in type_info_expression()615 static struct token *unary_expression(struct token *token, struct expression **tree) in unary_expression() function736 return unary_expression(token, tree); in cast_expression()