/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel1CommandsLib/ |
D | If.c | 126 IN CONST BIN_OPERATOR_TYPE BinOp, in TestOperation() argument 137 switch (BinOp) { in TestOperation() 161 if (BinOp == OperatorGreaterThan) { in TestOperation() 195 if (BinOp == OperatorLessThan) { in TestOperation() 284 if (BinOp == OperatorGreatorOrEqual) { in TestOperation() 318 if (BinOp == OperatorLessOrEqual) { in TestOperation() 365 BIN_OPERATOR_TYPE BinOp; in ProcessStatement() local 375 BinOp = OperatorMax; in ProcessStatement() 446 BinOp = OperatorMax; in ProcessStatement() 522 BinOp = OperatorGreaterThan; in ProcessStatement() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_ast.py | 173 x = ast.BinOp(1, 2, 3, lineno=0) 180 self.assertRaises(TypeError, ast.BinOp, 1, 2) 183 x = ast.BinOp(left=1, op=2, right=3, lineno=0)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | ast.py | 67 elif isinstance(node, BinOp) and \
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | ast.py | 67 elif isinstance(node, BinOp) and \
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/ |
D | Python.asdl | 54 | BinOp(expr left, operator op, expr right)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/ |
D | Python-ast.h | 205 } BinOp; member 452 #define BinOp(a0, a1, a2, a3, a4, a5) _Py_BinOp(a0, a1, a2, a3, a4, a5) macro
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/ |
D | Python-ast.h | 205 } BinOp; member 452 #define BinOp(a0, a1, a2, a3, a4, a5) _Py_BinOp(a0, a1, a2, a3, a4, a5) macro
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
D | symtable.c | 1189 VISIT(st, expr, e->v.BinOp.left); in symtable_visit_expr() 1190 VISIT(st, expr, e->v.BinOp.right); in symtable_visit_expr()
|
D | Python-ast.c | 1483 BinOp(expr_ty left, operator_ty op, expr_ty right, int lineno, int col_offset, in BinOp() function 1506 p->v.BinOp.left = left; in BinOp() 1507 p->v.BinOp.op = op; in BinOp() 1508 p->v.BinOp.right = right; in BinOp() 2576 value = ast2obj_expr(o->v.BinOp.left); in ast2obj_expr() 2581 value = ast2obj_operator(o->v.BinOp.op); in ast2obj_expr() 2586 value = ast2obj_expr(o->v.BinOp.right); in ast2obj_expr() 4804 *out = BinOp(left, op, right, lineno, col_offset, arena); in obj2ast_expr()
|
D | ast.c | 1622 result = BinOp(expr1, newoperator, expr2, LINENO(n), n->n_col_offset, in ast_for_binop() 1640 tmp_result = BinOp(result, newoperator, tmp, in ast_for_binop() 1805 tmp = BinOp(e, Pow, f, LINENO(n), n->n_col_offset, c->c_arena); in ast_for_power()
|
D | compile.c | 2991 VISIT(c, expr, e->v.BinOp.left); in compiler_visit_expr() 2992 VISIT(c, expr, e->v.BinOp.right); in compiler_visit_expr() 2993 ADDOP(c, binop(c, e->v.BinOp.op)); in compiler_visit_expr()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
D | symtable.c | 1191 VISIT(st, expr, e->v.BinOp.left); in symtable_visit_expr() 1192 VISIT(st, expr, e->v.BinOp.right); in symtable_visit_expr()
|
D | Python-ast.c | 1500 BinOp(expr_ty left, operator_ty op, expr_ty right, int lineno, int col_offset, in BinOp() function 1523 p->v.BinOp.left = left; in BinOp() 1524 p->v.BinOp.op = op; in BinOp() 1525 p->v.BinOp.right = right; in BinOp() 2593 value = ast2obj_expr(o->v.BinOp.left); in ast2obj_expr() 2598 value = ast2obj_operator(o->v.BinOp.op); in ast2obj_expr() 2603 value = ast2obj_expr(o->v.BinOp.right); in ast2obj_expr() 4821 *out = BinOp(left, op, right, lineno, col_offset, arena); in obj2ast_expr()
|
D | ast.c | 1622 result = BinOp(expr1, newoperator, expr2, LINENO(n), n->n_col_offset, in ast_for_binop() 1640 tmp_result = BinOp(result, newoperator, tmp, in ast_for_binop() 1810 tmp = BinOp(e, Pow, f, LINENO(n), n->n_col_offset, c->c_arena); in ast_for_power()
|
D | compile.c | 3011 VISIT(c, expr, e->v.BinOp.left); in compiler_visit_expr() 3012 VISIT(c, expr, e->v.BinOp.right); in compiler_visit_expr() 3013 ADDOP(c, binop(c, e->v.BinOp.op)); in compiler_visit_expr()
|