Home
last modified time | relevance | path

Searched refs:LtE (Results 1 – 10 of 10) sorted by relevance

/third_party/mindspore/mindspore/_extends/parse/
Dresources.py61 ast.LtE: (trope_ns, 'le'),
/third_party/python/Parser/
DPython.asdl104 cmpop = Eq | NotEq | Lt | LtE | Gt | GtE | Is | IsNot | In | NotIn
Dparser.c12651 _res = _PyPegen_cmpop_expr_pair ( p , LtE , a ); in lte_bitwise_or_rule()
/third_party/python/Python/
Dast_unparse.c485 case LtE: in append_ast_compare()
Dast_opt.c73 case LtE: in fold_unaryop()
DPython-ast.c4750 case LtE: in ast2obj_cmpop()
9850 *out = LtE; in obj2ast_cmpop()
Dcompile.c2613 case LtE: in compiler_addcompare()
/third_party/python/Include/internal/
Dpycore_ast.h31 typedef enum _cmpop { Eq=1, NotEq=2, Lt=3, LtE=4, Gt=5, GtE=6, Is=7, IsNot=8, enumerator
/third_party/python/Doc/library/
Dast.rst463 LtE(),
473 LtE
/third_party/python/Grammar/
Dpython.gram624 lte_bitwise_or[CmpopExprPair*]: '<=' a=bitwise_or { _PyPegen_cmpop_expr_pair(p, LtE, a) }