HomeSort by relevance Sort by last modified time
    Searched refs:ExprCreateBinary (Results 1 - 3 of 3) sorted by null

  /external/libxkbcommon/xkbcommon/src/xkbcomp/
ast-build.h 53 ExprCreateBinary(enum expr_op_type op, ExprDef *left, ExprDef *right);
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); }
ast-build.c 142 ExprCreateBinary(enum expr_op_type op, ExprDef *left, ExprDef *right)

Completed in 558 milliseconds