Searched refs:USub (Results 1 – 19 of 19) sorted by relevance
/external/tensorflow/tensorflow/python/autograph/converters/ |
D | logical_expressions.py | 56 gast.USub: 'ag__.u_sub',
|
/external/tensorflow/tensorflow/python/autograph/pyct/testing/ |
D | codegen.py | 84 sample_map = dict(((gast.USub, 1), (gast.UAdd, 0)))
|
/external/python/cpython3/Lib/ |
D | ast.py | 57 if isinstance(node, UnaryOp) and isinstance(node.op, (UAdd, USub)):
|
/external/python/cpython2/Parser/ |
D | Python.asdl | 97 unaryop = Invert | Not | UAdd | USub
|
/external/python/cpython3/Parser/ |
D | Python.asdl | 109 unaryop = Invert | Not | UAdd | USub
|
/external/python/cpython2/Doc/library/ |
D | ast.rst | 86 node.op = ast.USub() 96 node = ast.UnaryOp(ast.USub(), ast.Num(5, lineno=0, col_offset=0),
|
/external/python/cpython3/Doc/library/ |
D | ast.rst | 83 node.op = ast.USub() 93 node = ast.UnaryOp(ast.USub(), ast.Num(5, lineno=0, col_offset=0),
|
/external/tensorflow/tensorflow/python/autograph/pyct/common_transformers/ |
D | anf.py | 104 gast.Invert, gast.Not, gast.UAdd, gast.USub,
|
/external/python/cpython2/Demo/parser/ |
D | unparse.py | 432 if isinstance(t.op, ast.USub) and isinstance(t.operand, ast.Num):
|
/external/python/cpython3/Python/ |
D | ast_unparse.c | 165 case USub: op = "-"; pr = PR_FACTOR; break; in append_ast_unaryop()
|
D | ast_opt.c | 122 [USub] = PyNumber_Negative, in fold_unaryop()
|
D | Python-ast.c | 3638 case USub: in ast2obj_unaryop() 7497 *out = USub; in obj2ast_unaryop()
|
D | ast.c | 2439 return UnaryOp(USub, expression, LINENO(n), n->n_col_offset, in ast_for_factor()
|
D | compile.c | 3077 case USub: in unaryop()
|
/external/python/cpython2/Include/ |
D | Python-ast.h | 22 typedef enum _unaryop { Invert=1, Not=2, UAdd=3, USub=4 } unaryop_ty; enumerator
|
/external/python/cpython3/Include/ |
D | Python-ast.h | 22 typedef enum _unaryop { Invert=1, Not=2, UAdd=3, USub=4 } unaryop_ty; enumerator
|
/external/python/cpython2/Python/ |
D | ast.c | 1771 return UnaryOp(USub, expression, LINENO(n), n->n_col_offset, in ast_for_factor()
|
D | Python-ast.c | 3091 case USub: in ast2obj_unaryop() 6301 *out = USub; in obj2ast_unaryop()
|
D | compile.c | 2200 case USub: in unaryop()
|