/external/python/cpython3/Lib/test/ |
D | test_augassign.py | 78 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
|
D | list_tests.py | 498 self.assertRaises(TypeError, u.__iadd__, None)
|
D | test_operator.py | 434 def __iadd__ (self, other): return "iadd" member in OperatorTestCase.test_inplace.C
|
/external/python/cpython2/Lib/test/ |
D | test_augassign.py | 90 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
|
D | test_operator.py | 476 def __iadd__ (self, other): return "iadd" member in OperatorTestCase.test_inplace.C 506 self.assertEqual(operator.__iadd__ (c, 5), "iadd")
|
D | list_tests.py | 476 self.assertRaises(TypeError, u.__iadd__, None)
|
/external/python/cpython2/Lib/ |
D | UserList.py | 62 def __iadd__(self, other): member in UserList
|
D | UserString.py | 206 def __iadd__(self, other): member in MutableString
|
D | _abcoll.py | 691 def __iadd__(self, values): member in MutableSequence
|
D | rfc822.py | 799 def __iadd__(self, other): member in AddressList
|
/external/fonttools/Lib/fontTools/misc/ |
D | arrayTools.py | 160 def __iadd__(self, other): member in Vector
|
/external/python/cpython3/Lib/ |
D | operator.py | 451 __iadd__ = iadd variable
|
D | _collections_abc.py | 1006 def __iadd__(self, values): member in MutableSequence
|
/external/python/cpython2/Lib/email/ |
D | _parseaddr.py | 473 def __iadd__(self, other): member in AddressList
|
/external/chromium-trace/catapult/third_party/pyserial/serial/ |
D | serialutil.py | 30 def __iadd__(self, other): member in bytearray
|
/external/python/cpython3/Lib/email/ |
D | _parseaddr.py | 516 def __iadd__(self, other): member in AddressList
|
/external/python/cpython3/Lib/collections/ |
D | __init__.py | 823 def __iadd__(self, other): member in Counter 1099 def __iadd__(self, other): member in UserList
|
/external/python/cpython3/Lib/unittest/test/testmock/ |
D | testmagicmethods.py | 118 mock.__iadd__ = add
|
/external/python/cpython3/Doc/library/ |
D | collections.abc.rst | 57 … ``__delitem__``, ``remove``, and ``__iadd__``
|
D | operator.rst | 475 __iadd__(a, b)
|
/external/python/mock/mock/tests/ |
D | testmagicmethods.py | 146 mock.__iadd__ = add
|
/external/tensorflow/tensorflow/python/training/tracking/ |
D | data_structures.py | 310 def __iadd__(self, values): member in List
|
/external/python/cpython2/Modules/ |
D | operator.c | 406 spam2(iadd,__iadd__, "a = iadd(a, b) -- Same as a += b.")
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | _g_l_y_f.py | 1455 def __add__(self, other): return self.copy().__iadd__(other) 1464 def __iadd__(self, other): member in GlyphCoordinates
|
/external/python/cpython3/Doc/faq/ |
D | programming.rst | 1321 ``__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
|