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