Home
last modified time | relevance | path

Searched refs:ExprCreateBinary (Results 1 – 4 of 4) sorted by relevance

/external/libxkbcommon/xkbcommon/src/xkbcomp/
Dparser.y633 { $$ = ExprCreateBinary(EXPR_DIVIDE, $1, $3); }
635 { $$ = ExprCreateBinary(EXPR_ADD, $1, $3); }
637 { $$ = ExprCreateBinary(EXPR_SUBTRACT, $1, $3); }
639 { $$ = ExprCreateBinary(EXPR_MULTIPLY, $1, $3); }
641 { $$ = ExprCreateBinary(EXPR_ASSIGN, $1, $3); }
Dast-build.h53 ExprCreateBinary(enum expr_op_type op, ExprDef *left, ExprDef *right);
Dparser.c2868 { (yyval.expr) = ExprCreateBinary(EXPR_DIVIDE, (yyvsp[-2].expr), (yyvsp[0].expr)); } in yyparse()
2874 { (yyval.expr) = ExprCreateBinary(EXPR_ADD, (yyvsp[-2].expr), (yyvsp[0].expr)); } in yyparse()
2880 { (yyval.expr) = ExprCreateBinary(EXPR_SUBTRACT, (yyvsp[-2].expr), (yyvsp[0].expr)); } in yyparse()
2886 { (yyval.expr) = ExprCreateBinary(EXPR_MULTIPLY, (yyvsp[-2].expr), (yyvsp[0].expr)); } in yyparse()
2892 { (yyval.expr) = ExprCreateBinary(EXPR_ASSIGN, (yyvsp[-2].expr), (yyvsp[0].expr)); } in yyparse()
Dast-build.c142 ExprCreateBinary(enum expr_op_type op, ExprDef *left, ExprDef *right) in ExprCreateBinary() function