Home
last modified time | relevance | path

Searched refs:__iadd__ (Results 1 – 25 of 52) sorted by relevance

123

/external/python/cpython3/Lib/test/
Dtest_augassign.py78 def __iadd__(self, val): member in AugAssignTest.testCustomMethods1.aug_test2
83 def __iadd__(self, val): member in AugAssignTest.testCustomMethods1.aug_test3
88 __iadd__ = None variable in AugAssignTest.testCustomMethods1.aug_test4
126 def __iadd__(self, val): member in AugAssignTest.testCustomMethods2.testall
Dlist_tests.py498 self.assertRaises(TypeError, u.__iadd__, None)
Dtest_operator.py434 def __iadd__ (self, other): return "iadd" member in OperatorTestCase.test_inplace.C
/external/python/cpython2/Lib/test/
Dtest_augassign.py90 def __iadd__(self, val): member in AugAssignTest.testCustomMethods1.aug_test2
95 def __iadd__(self, val): member in AugAssignTest.testCustomMethods1.aug_test3
130 def __iadd__(self, val): member in AugAssignTest.testCustomMethods2.testall
Dtest_operator.py476 def __iadd__ (self, other): return "iadd" member in OperatorTestCase.test_inplace.C
506 self.assertEqual(operator.__iadd__ (c, 5), "iadd")
Dlist_tests.py476 self.assertRaises(TypeError, u.__iadd__, None)
/external/python/cpython2/Lib/
DUserList.py62 def __iadd__(self, other): member in UserList
DUserString.py206 def __iadd__(self, other): member in MutableString
D_abcoll.py691 def __iadd__(self, values): member in MutableSequence
Drfc822.py799 def __iadd__(self, other): member in AddressList
/external/fonttools/Lib/fontTools/misc/
DarrayTools.py160 def __iadd__(self, other): member in Vector
/external/python/cpython3/Lib/
Doperator.py451 __iadd__ = iadd variable
D_collections_abc.py1006 def __iadd__(self, values): member in MutableSequence
/external/python/cpython2/Lib/email/
D_parseaddr.py473 def __iadd__(self, other): member in AddressList
/external/chromium-trace/catapult/third_party/pyserial/serial/
Dserialutil.py30 def __iadd__(self, other): member in bytearray
/external/python/cpython3/Lib/email/
D_parseaddr.py516 def __iadd__(self, other): member in AddressList
/external/python/cpython3/Lib/collections/
D__init__.py823 def __iadd__(self, other): member in Counter
1099 def __iadd__(self, other): member in UserList
/external/python/cpython3/Lib/unittest/test/testmock/
Dtestmagicmethods.py118 mock.__iadd__ = add
/external/python/cpython3/Doc/library/
Dcollections.abc.rst57 … ``__delitem__``, ``remove``, and ``__iadd__``
Doperator.rst475 __iadd__(a, b)
/external/python/mock/mock/tests/
Dtestmagicmethods.py146 mock.__iadd__ = add
/external/tensorflow/tensorflow/python/training/tracking/
Ddata_structures.py310 def __iadd__(self, values): member in List
/external/python/cpython2/Modules/
Doperator.c406 spam2(iadd,__iadd__, "a = iadd(a, b) -- Same as a += b.")
/external/fonttools/Lib/fontTools/ttLib/tables/
D_g_l_y_f.py1455 def __add__(self, other): return self.copy().__iadd__(other)
1464 def __iadd__(self, other): member in GlyphCoordinates
/external/python/cpython3/Doc/faq/
Dprogramming.rst1321 ``__iadd__`` magic method, it gets called when the ``+=`` augmented assignment
1323 and (b) for lists, ``__iadd__`` is equivalent to calling ``extend`` on the list
1334 >>> result = a_list.__iadd__([1])
1344 >>> result = a_tuple[0].__iadd__(['item'])
1350 The ``__iadd__`` succeeds, and thus the list is extended, but even though

123