Searched refs:_call (Results 1 - 6 of 6) sorted by relevance
/third_party/python/Lib/tkinter/ |
H A D | font.py | 98 self._call = tk.call 121 self._call("font", "delete", self.name) 136 return self._call("font", "actual", self.name, *args) 139 self._split(self._call("font", "actual", self.name, *args))) 143 return self._call("font", "config", self.name, "-"+option) 148 self._call("font", "config", self.name, 152 self._split(self._call("font", "config", self.name))) 161 return self._tk.getint(self._call("font", "measure", self.name, *args)) 175 self._call("font", "metrics", self.name, *args)) 177 res = self._split(self._call("fon [all...] |
/third_party/python/Lib/ |
H A D | operator.py | 240 __slots__ = ('_attrs', '_call') 252 self._call = func 258 self._call = func 261 return self._call(obj) 277 __slots__ = ('_items', '_call') 284 self._call = func 289 self._call = func 292 return self._call(obj)
|
/third_party/python/Lib/asyncio/ |
H A D | base_subprocess.py | 194 def _call(self, cb, *data): member in BaseSubprocessTransport 201 self._call(self._protocol.pipe_connection_lost, fd, exc) 205 self._call(self._protocol.pipe_data_received, fd, data) 217 self._call(self._protocol.process_exited) 239 self._call(self._call_connection_lost, None)
|
/third_party/python/Lib/unittest/ |
H A D | mock.py | 865 def _call_matcher(self, _call): 873 if isinstance(_call, tuple) and len(_call) > 2: 874 sig = self._get_call_signature_from_name(_call[0]) 879 if len(_call) == 2: 881 args, kwargs = _call 883 name, args, kwargs = _call 890 return _call 1075 for _call in self: 1076 assert len(item) == len(_call) [all...] |
/third_party/backends/include/sane/ |
H A D | sanei_debug.h | 108 # define DBG_LOCAL PASTE(DBG_LEVEL,_call)
|
/third_party/python/Lib/test/support/ |
H A D | __init__.py | 1523 def _call(self, python, args, env, returncode): member in PythonSymlink 1538 return self._call(self.real, args, None, returncode) 1541 return self._call(self.link, args, self._env, returncode)
|
Completed in 8 milliseconds