Searched refs:ExprCreateBinary (Results 1 - 4 of 4) sorted by relevance
| /xsrc/external/mit/xkbcomp/dist/ |
| H A D | parseutils.h | 66 extern ExprDef *ExprCreateBinary(unsigned /* op */ ,
|
| H A D | xkbparse.y | 605 { $$= ExprCreateBinary(OpDivide,$1,$3); } 607 { $$= ExprCreateBinary(OpAdd,$1,$3); } 609 { $$= ExprCreateBinary(OpSubtract,$1,$3); } 611 { $$= ExprCreateBinary(OpMultiply,$1,$3); } 613 { $$= ExprCreateBinary(OpAssign,$1,$3); }
|
| H A D | xkbparse.c | 2638 { (yyval.expr)= ExprCreateBinary(OpDivide,(yyvsp[-2].expr),(yyvsp[0].expr)); } 2644 { (yyval.expr)= ExprCreateBinary(OpAdd,(yyvsp[-2].expr),(yyvsp[0].expr)); } 2650 { (yyval.expr)= ExprCreateBinary(OpSubtract,(yyvsp[-2].expr),(yyvsp[0].expr)); } 2656 { (yyval.expr)= ExprCreateBinary(OpMultiply,(yyvsp[-2].expr),(yyvsp[0].expr)); } 2662 { (yyval.expr)= ExprCreateBinary(OpAssign,(yyvsp[-2].expr),(yyvsp[0].expr)); }
|
| H A D | parseutils.c | 102 ExprCreateBinary(unsigned op, ExprDef * left, ExprDef * right) function in typeref:typename:ExprDef *
|
Completed in 8 milliseconds