Searched refs:_the_name (Results 1 – 4 of 4) sorted by relevance
/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/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/python/cpython3/Lib/unittest/ |
D | mock.py | 285 _the_name = '_mock_' + name 286 def _get(self, name=name, _the_name=_the_name): argument 289 return getattr(self, _the_name) 291 def _set(self, value, name=name, _the_name=_the_name): argument 294 self.__dict__[_the_name] = value
|
/external/python/mock/mock/ |
D | mock.py | 407 _the_name = '_mock_' + name 408 def _get(self, name=name, _the_name=_the_name): argument 411 return getattr(self, _the_name) 413 def _set(self, value, name=name, _the_name=_the_name): argument 416 self.__dict__[_the_name] = value
|