Home
last modified time | relevance | path

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

/aosp_15_r20/external/libxkbcommon/src/xkbcomp/
H A Dparser.y648 { $$ = ExprCreateBinary(EXPR_DIVIDE, $1, $3); }
650 { $$ = ExprCreateBinary(EXPR_ADD, $1, $3); }
652 { $$ = ExprCreateBinary(EXPR_SUBTRACT, $1, $3); }
654 { $$ = ExprCreateBinary(EXPR_MULTIPLY, $1, $3); }
656 { $$ = ExprCreateBinary(EXPR_ASSIGN, $1, $3); }
H A Dast-build.h53 ExprCreateBinary(enum expr_op_type op, ExprDef *left, ExprDef *right);
H A Dast-build.c146 ExprCreateBinary(enum expr_op_type op, ExprDef *left, ExprDef *right) in ExprCreateBinary() function
/aosp_15_r20/external/libxkbcommon/config/libxkbcommon.so.0.0.0.p/
H A Dparser.c2699 … { (yyval.expr) = ExprCreateBinary(EXPR_DIVIDE, (yyvsp[-2].expr), (yyvsp[0].expr)); } in yyparse()
2705 … { (yyval.expr) = ExprCreateBinary(EXPR_ADD, (yyvsp[-2].expr), (yyvsp[0].expr)); } in yyparse()
2711 … { (yyval.expr) = ExprCreateBinary(EXPR_SUBTRACT, (yyvsp[-2].expr), (yyvsp[0].expr)); } in yyparse()
2717 … { (yyval.expr) = ExprCreateBinary(EXPR_MULTIPLY, (yyvsp[-2].expr), (yyvsp[0].expr)); } in yyparse()
2723 … { (yyval.expr) = ExprCreateBinary(EXPR_ASSIGN, (yyvsp[-2].expr), (yyvsp[0].expr)); } in yyparse()