Searched refs:ExprCreateBinary (Results 1 – 4 of 4) sorted by relevance
/external/libxkbcommon/src/xkbcomp/ |
D | parser.y | 648 { $$ = 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); }
|
D | ast-build.h | 53 ExprCreateBinary(enum expr_op_type op, ExprDef *left, ExprDef *right);
|
D | ast-build.c | 146 ExprCreateBinary(enum expr_op_type op, ExprDef *left, ExprDef *right) in ExprCreateBinary() function
|
/external/libxkbcommon/config/libxkbcommon.so.0.0.0.p/ |
D | parser.c | 2700 … { (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()
|