Home
last modified time | relevance | path

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

/external/libxkbcommon/src/xkbcomp/
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); }
Dast-build.h53 ExprCreateBinary(enum expr_op_type op, ExprDef *left, ExprDef *right);
Dast-build.c146 ExprCreateBinary(enum expr_op_type op, ExprDef *left, ExprDef *right) in ExprCreateBinary() function
/external/libxkbcommon/config/libxkbcommon.so.0.0.0.p/
Dparser.c2700 … { (yyval.expr) = ExprCreateBinary(EXPR_DIVIDE, (yyvsp[-2].expr), (yyvsp[0].expr)); } in yyparse()
2706 … { (yyval.expr) = ExprCreateBinary(EXPR_ADD, (yyvsp[-2].expr), (yyvsp[0].expr)); } in yyparse()
2712 … { (yyval.expr) = ExprCreateBinary(EXPR_SUBTRACT, (yyvsp[-2].expr), (yyvsp[0].expr)); } in yyparse()
2718 … { (yyval.expr) = ExprCreateBinary(EXPR_MULTIPLY, (yyvsp[-2].expr), (yyvsp[0].expr)); } in yyparse()
2724 … { (yyval.expr) = ExprCreateBinary(EXPR_ASSIGN, (yyvsp[-2].expr), (yyvsp[0].expr)); } in yyparse()