Searched refs:USub (Results 1 - 12 of 12) sorted by relevance

/external/python/cpython3/Lib/
H A Dast.py69 elif isinstance(node, UnaryOp) and isinstance(node.op, (UAdd, USub)):
/external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/
H A Dutil.py322 _ast.USub = type(m.body[8].value.left.left.op)
H A D_ast_util.py72 USub: '-'
/external/python/cpython2/Demo/parser/
H A Dunparse.py422 unop = {"Invert":"~", "Not": "not", "UAdd":"+", "USub":"-"}
432 if isinstance(t.op, ast.USub) and isinstance(t.operand, ast.Num):
/external/python/cpython2/Include/
H A DPython-ast.h22 typedef enum _unaryop { Invert=1, Not=2, UAdd=3, USub=4 } unaryop_ty; enumerator in enum:_unaryop
/external/python/cpython3/Include/
H A DPython-ast.h22 typedef enum _unaryop { Invert=1, Not=2, UAdd=3, USub=4 } unaryop_ty; enumerator in enum:_unaryop
/external/python/cpython2/Python/
H A DPython-ast.c902 USub_type = make_type("USub", unaryop_type, NULL, 0);
3091 case USub:
6301 *out = USub;
6896 if (PyDict_SetItemString(d, "USub", (PyObject*)USub_type) < 0) return;
H A Dast.c1771 return UnaryOp(USub, expression, LINENO(n), n->n_col_offset,
H A Dcompile.c2198 case USub:
/external/python/cpython3/Python/
H A Dast.c2444 return UnaryOp(USub, expression, LINENO(n), n->n_col_offset,
H A DPython-ast.c1105 USub_type = make_type("USub", unaryop_type, NULL, 0);
3654 case USub:
7249 *out = USub;
8017 if (PyDict_SetItemString(d, "USub", (PyObject*)USub_type) < 0) return NULL;
H A Dcompile.c2907 case USub:

Completed in 311 milliseconds