Searched refs:_the_name (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython2/Lib/test/ |
D | _mock_backport.py | 290 _the_name = '_mock_' + name 291 def _get(self, name=name, _the_name=_the_name): argument 294 return getattr(self, _the_name) 296 def _set(self, value, name=name, _the_name=_the_name): argument 299 self.__dict__[_the_name] = value
|
/external/pdfium/third_party/pymock/ |
D | mock.py | 394 _the_name = '_mock_' + name 395 def _get(self, name=name, _the_name=_the_name): argument 398 return getattr(self, _the_name) 400 def _set(self, value, name=name, _the_name=_the_name): argument 403 self.__dict__[_the_name] = value
|
/external/python/mock/mock/ |
D | mock.py | 392 _the_name = '_mock_' + name 393 def _get(self, name=name, _the_name=_the_name): argument 396 return getattr(self, _the_name) 398 def _set(self, value, name=name, _the_name=_the_name): argument 401 self.__dict__[_the_name] = value
|
/external/python/cpython3/Lib/unittest/ |
D | mock.py | 319 _the_name = '_mock_' + name 320 def _get(self, name=name, _the_name=_the_name): argument 323 return getattr(self, _the_name) 325 def _set(self, value, name=name, _the_name=_the_name): argument 328 self.__dict__[_the_name] = value
|