Home
last modified time | relevance | path

Searched refs:AugAssign (Results 1 – 17 of 17) sorted by relevance

/external/pytorch/torch/csrc/jit/frontend/
Dtree_views.h670 struct AugAssign : public Stmt { struct
671 explicit AugAssign(const TreeRef& tree) : Stmt(tree) { in AugAssign() function
674 static AugAssign create( in create() argument
679 return AugAssign( in create()
Dir_emitter.cpp1134 emitAugAssignment(AugAssign(stmt)); in emitStatements()
2648 Symbol getAugOp(const AugAssign& stmt, const TypePtr& type) { in getAugOp()
2684 std::pair<std::string, std::string> getAugMagicMethod(const AugAssign& stmt) { in getAugMagicMethod()
2705 void emitAugAssignment(const AugAssign& stmt) { in emitAugAssignment()
2734 void emitAugAssignmentToSelectVar(const AugAssign& stmt) { in emitAugAssignmentToSelectVar()
2744 void emitAugAssignmentToVar(const AugAssign& stmt) { in emitAugAssignmentToVar()
2751 Value* emitAugAssignmentHelper(const AugAssign& stmt, Value* lhs) { in emitAugAssignmentHelper()
2796 const AugAssign& stmt, in emitAugAssignmentGeneric()
2840 void emitAugAssignmentToSubscript(const AugAssign& stmt) { in emitAugAssignmentToSubscript()
Dparser.cpp526 return AugAssign::create( in parseAssign()
/external/tensorflow/tensorflow/python/autograph/pyct/
Dtransformer.py451 (list, tuple, gast.Assign, gast.AugAssign)):
/external/pytorch/torch/csrc/jit/python/
Dpython_tree_views.cpp232 py::class_<AugAssign, Stmt>(m, "AugAssign") in initTreeViewBindings()
238 return AugAssign::create(r, lhs, kind, rhs); in initTreeViewBindings()
/external/python/cpython3/Parser/
DPython.asdl29 | AugAssign(expr target, operator op, expr value)
/external/python/cpython3/Python/
Dast.c760 ret = validate_expr(state, stmt->v.AugAssign.target, Store) && in validate_stmt()
761 validate_expr(state, stmt->v.AugAssign.value, Load); in validate_stmt()
Dast_opt.c916 CALL(astfold_expr, expr_ty, node_->v.AugAssign.target); in astfold_stmt()
917 CALL(astfold_expr, expr_ty, node_->v.AugAssign.value); in astfold_stmt()
Dsymtable.c1817 VISIT(st, expr, s->v.AugAssign.target); in symtable_visit_stmt()
1818 VISIT(st, expr, s->v.AugAssign.value); in symtable_visit_stmt()
DPython-ast.c6665 p->v.AugAssign.target = target; in _PyAST_AugAssign()
6666 p->v.AugAssign.op = op; in _PyAST_AugAssign()
6667 p->v.AugAssign.value = value; in _PyAST_AugAssign()
8503 value = ast2obj_expr(state, vstate, o->v.AugAssign.target); in ast2obj_stmt()
8508 value = ast2obj_operator(state, vstate, o->v.AugAssign.op); in ast2obj_stmt()
8513 value = ast2obj_expr(state, vstate, o->v.AugAssign.value); in ast2obj_stmt()
Dcompile.c6381 expr_ty e = s->v.AugAssign.target; in compiler_augassign()
6420 VISIT(c, expr, s->v.AugAssign.value); in compiler_augassign()
6421 ADDOP_INPLACE(c, loc, s->v.AugAssign.op); in compiler_augassign()
/external/pytorch/torch/jit/
Dfrontend.py20 AugAssign,
770 return AugAssign(lhs, op_token, rhs)
/external/yapf/yapf/pyparser/
Dpyparser_visitor.py.tmpl97 # AugAssign(target=Name,
/external/python/cpython3/Include/internal/
Dpycore_ast.h252 } AugAssign; member
/external/python/cpython3/Lib/test/test_ast/
Dtest_ast.py1842 aug = ast.AugAssign(
1846 aug = ast.AugAssign(
/external/python/cpython3/Doc/library/
Dast.rst944 .. class:: AugAssign(target, op, value)
959 AugAssign(
/external/python/cpython3/Doc/data/
Dpython3.13.abi11070 …<var-decl name='AugAssign' type-id='type-id-620' visibility='default' filepath='./Include/internal…