HomeSort by relevance Sort by last modified time
    Searched refs:_call (Results 1 - 17 of 17) sorted by null

  /external/python/cpython2/Lib/lib-tk/
tkFont.py 93 self._call = tk.call
110 self._call("font", "delete", self.name)
123 return self._call("font", "actual", self.name, "-"+option)
126 self._split(self._call("font", "actual", self.name))
131 return self._call("font", "config", self.name, "-"+option)
136 self._call("font", "config", self.name,
140 self._split(self._call("font", "config", self.name))
147 return int(self._call("font", "measure", self.name, text))
157 self._call("font", "metrics", self.name, self._get(options))
160 res = self._split(self._call("font", "metrics", self.name)
    [all...]
  /external/python/cpython3/Lib/tkinter/
font.py 97 self._call = tk.call
114 self._call("font", "delete", self.name)
129 return self._call("font", "actual", self.name, *args)
132 self._split(self._call("font", "actual", self.name, *args)))
136 return self._call("font", "config", self.name, "-"+option)
141 self._call("font", "config", self.name,
145 self._split(self._call("font", "config", self.name)))
154 return self._tk.getint(self._call("font", "measure", self.name, *args))
168 self._call("font", "metrics", self.name, *args))
170 res = self._split(self._call("font", "metrics", self.name, *args)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
tkFont.py 93 self._call = root.tk.call
110 self._call("font", "delete", self.name)
123 return self._call("font", "actual", self.name, "-"+option)
126 self._split(self._call("font", "actual", self.name))
131 return self._call("font", "config", self.name, "-"+option)
136 self._call("font", "config", self.name,
140 self._split(self._call("font", "config", self.name))
147 return int(self._call("font", "measure", self.name, text))
157 self._call("font", "metrics", self.name, self._get(options))
160 res = self._split(self._call("font", "metrics", self.name)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
tkFont.py 93 self._call = root.tk.call
110 self._call("font", "delete", self.name)
123 return self._call("font", "actual", self.name, "-"+option)
126 self._split(self._call("font", "actual", self.name))
131 return self._call("font", "config", self.name, "-"+option)
136 self._call("font", "config", self.name,
140 self._split(self._call("font", "config", self.name))
147 return int(self._call("font", "measure", self.name, text))
157 self._call("font", "metrics", self.name, self._get(options))
160 res = self._split(self._call("font", "metrics", self.name)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
tkFont.py 93 self._call = root.tk.call
110 self._call("font", "delete", self.name)
123 return self._call("font", "actual", self.name, "-"+option)
126 self._split(self._call("font", "actual", self.name))
131 return self._call("font", "config", self.name, "-"+option)
136 self._call("font", "config", self.name,
140 self._split(self._call("font", "config", self.name))
147 return int(self._call("font", "measure", self.name, text))
157 self._call("font", "metrics", self.name, self._get(options))
160 res = self._split(self._call("font", "metrics", self.name)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
tkFont.py 93 self._call = root.tk.call
110 self._call("font", "delete", self.name)
123 return self._call("font", "actual", self.name, "-"+option)
126 self._split(self._call("font", "actual", self.name))
131 return self._call("font", "config", self.name, "-"+option)
136 self._call("font", "config", self.name,
140 self._split(self._call("font", "config", self.name))
147 return int(self._call("font", "measure", self.name, text))
157 self._call("font", "metrics", self.name, self._get(options))
160 res = self._split(self._call("font", "metrics", self.name)
    [all...]
  /external/python/cpython3/Lib/
operator.py 234 __slots__ = ('_attrs', '_call')
246 self._call = func
252 self._call = func
255 return self._call(obj)
271 __slots__ = ('_items', '_call')
278 self._call = func
283 self._call = func
286 return self._call(obj)
  /external/python/cpython3/Lib/asyncio/
base_subprocess.py 199 def _call(self, cb, *data): member in class:BaseSubprocessTransport
206 self._call(self._protocol.pipe_connection_lost, fd, exc)
210 self._call(self._protocol.pipe_data_received, fd, data)
223 self._call(self._protocol.process_exited)
251 self._call(self._call_connection_lost, None)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
client.py 38 self._methods = self._call('.methods')
61 def _call(self, name, *args): member in class:Client
  /external/python/cpython2/Demo/pdist/
client.py 38 self._methods = self._call('.methods')
61 def _call(self, name, *args): member in class:Client
  /system/extras/simpleperf/runtest/
runtest.py 311 self._call(call_args)
319 self._call(call_args, report_file)
321 def _call(self, args, output_file=None): member in class:Runner
333 def _call(self, args, output_file=None): member in class:HostRunner
355 def _call(self, args, output_file=None): member in class:DeviceRunner
  /external/python/cpython2/Lib/test/
_mock_backport.py 741 def _call_matcher(self, _call):
750 if len(_call) == 2:
752 args, kwargs = _call
754 name, args, kwargs = _call
760 return _call
920 _call = _Call((args, kwargs), two=True)
921 self.call_args = _call
922 self.call_args_list.append(_call)
923 self.mock_calls.append(_Call(('', args, kwargs))
    [all...]
  /external/python/cpython3/Lib/unittest/
mock.py 749 def _call_matcher(self, _call):
758 if len(_call) == 2:
760 args, kwargs = _call
762 name, args, kwargs = _call
768 return _call
949 _call = _Call((args, kwargs), two=True)
950 self.call_args = _call
951 self.call_args_list.append(_call)
952 self.mock_calls.append(_Call(('', args, kwargs))
    [all...]
  /external/tensorflow/tensorflow/python/framework/
function.py 507 ret, op = _call(self._signature, *args, **kwargs)
738 def _call(sig, *inputs, **kwargs): function
    [all...]
  /prebuilts/tools/common/m2/repository/com/jakewharton/rxrelay/rxrelay/1.1.0/
rxrelay-1.1.0.jar 
  /prebuilts/tools/linux-x86/swt/
swt.jar 
  /prebuilts/tools/linux-x86_64/swt/
swt.jar 

Completed in 494 milliseconds