/external/pytorch/torch/csrc/jit/frontend/ |
D | tree_views.h | 670 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()
|
D | ir_emitter.cpp | 1134 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()
|
D | parser.cpp | 526 return AugAssign::create( in parseAssign()
|
/external/tensorflow/tensorflow/python/autograph/pyct/ |
D | transformer.py | 451 (list, tuple, gast.Assign, gast.AugAssign)):
|
/external/pytorch/torch/csrc/jit/python/ |
D | python_tree_views.cpp | 232 py::class_<AugAssign, Stmt>(m, "AugAssign") in initTreeViewBindings() 238 return AugAssign::create(r, lhs, kind, rhs); in initTreeViewBindings()
|
/external/python/cpython3/Parser/ |
D | Python.asdl | 29 | AugAssign(expr target, operator op, expr value)
|
/external/python/cpython3/Python/ |
D | ast.c | 760 ret = validate_expr(state, stmt->v.AugAssign.target, Store) && in validate_stmt() 761 validate_expr(state, stmt->v.AugAssign.value, Load); in validate_stmt()
|
D | ast_opt.c | 916 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()
|
D | symtable.c | 1817 VISIT(st, expr, s->v.AugAssign.target); in symtable_visit_stmt() 1818 VISIT(st, expr, s->v.AugAssign.value); in symtable_visit_stmt()
|
D | Python-ast.c | 6665 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()
|
D | compile.c | 6381 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/ |
D | frontend.py | 20 AugAssign, 770 return AugAssign(lhs, op_token, rhs)
|
/external/yapf/yapf/pyparser/ |
D | pyparser_visitor.py.tmpl | 97 # AugAssign(target=Name,
|
/external/python/cpython3/Include/internal/ |
D | pycore_ast.h | 252 } AugAssign; member
|
/external/python/cpython3/Lib/test/test_ast/ |
D | test_ast.py | 1842 aug = ast.AugAssign( 1846 aug = ast.AugAssign(
|
/external/python/cpython3/Doc/library/ |
D | ast.rst | 944 .. class:: AugAssign(target, op, value) 959 AugAssign(
|
/external/python/cpython3/Doc/data/ |
D | python3.13.abi | 11070 …<var-decl name='AugAssign' type-id='type-id-620' visibility='default' filepath='./Include/internal…
|