Home
last modified time | relevance | path

Searched refs:_w (Results 1 – 25 of 230) sorted by relevance

12345678910

/external/python/cpython2/Lib/lib-tk/
DTkinter.py504 self.tk.call('tkwait', 'window', window._w)
512 self.tk.call('tkwait', 'visibility', window._w)
530 self.tk.call('focus', self._w)
536 self.tk.call('focus', '-force', self._w)
552 name = self.tk.call('focus', '-displayof', self._w)
558 name = self.tk.call('focus', '-lastfor', self._w)
574 name = self.tk.call('tk_focusNext', self._w)
579 name = self.tk.call('tk_focusPrev', self._w)
661 if 'displayof' not in kw: kw['displayof'] = self._w
669 if 'displayof' not in kw: kw['displayof'] = self._w
[all …]
DTix.py233 self.tk.call('tixForm', self._w, *self._options(cnf, kw))
241 return self.tk.call('tixForm', 'check', self._w)
244 self.tk.call('tixForm', 'forget', self._w)
248 x = self.tk.call('tixForm', 'grid', self._w)
254 return self.tk.call('tixForm', 'grid', self._w, xsize, ysize)
258 return self.tk.call('tixForm', 'info', self._w)
261 return self.tk.call('tixForm', 'info', self._w, option)
267 'tixForm', 'slaves', self._w)))
315 self.tk.call(widgetName, self._w, *extra)
338 self.tk.call('tixSetSilent', self._w, value)
[all …]
Dttk.py563 return self.tk.call(self._w, "identify", x, y)
574 self.tk.call(self._w, "instate", ' '.join(statespec)))
591 return self.tk.splitlist(str(self.tk.call(self._w, "state", statespec)))
615 return self.tk.call(self._w, "invoke")
644 return self.tk.call(self._w, "invoke")
673 return self._getints(self.tk.call(self._w, "bbox", index))
679 return self.tk.call(self._w, "identify", x, y)
686 return self.tk.getboolean(self.tk.call(self._w, "validate"))
714 return self.tk.getint(self.tk.call(self._w, "current"))
715 return self.tk.call(self._w, "current", newindex)
[all …]
DDialog.py19 'tk_dialog', self._w,
/external/python/cpython3/Lib/tkinter/
Dtix.py229 self.tk.call('tixForm', self._w, *self._options(cnf, kw))
237 return self.tk.call('tixForm', 'check', self._w)
240 self.tk.call('tixForm', 'forget', self._w)
244 x = self.tk.call('tixForm', 'grid', self._w)
250 return self.tk.call('tixForm', 'grid', self._w, xsize, ysize)
254 return self.tk.call('tixForm', 'info', self._w)
257 return self.tk.call('tixForm', 'info', self._w, option)
263 'tixForm', 'slaves', self._w))]
311 self.tk.call(widgetName, self._w, *extra)
334 self.tk.call('tixSetSilent', self._w, value)
[all …]
D__init__.py642 self.tk.call('tkwait', 'window', window._w)
650 self.tk.call('tkwait', 'visibility', window._w)
683 self.tk.call('focus', self._w)
689 self.tk.call('focus', '-force', self._w)
705 name = self.tk.call('focus', '-displayof', self._w)
711 name = self.tk.call('focus', '-lastfor', self._w)
727 name = self.tk.call('tk_focusNext', self._w)
732 name = self.tk.call('tk_focusPrev', self._w)
814 if 'displayof' not in kw: kw['displayof'] = self._w
822 if 'displayof' not in kw: kw['displayof'] = self._w
[all …]
Dttk.py567 return self.tk.call(self._w, "identify", x, y)
578 self.tk.call(self._w, "instate", ' '.join(statespec)))
595 return self.tk.splitlist(str(self.tk.call(self._w, "state", statespec)))
619 return self.tk.call(self._w, "invoke")
648 return self.tk.call(self._w, "invoke")
677 return self._getints(self.tk.call(self._w, "bbox", index))
683 return self.tk.call(self._w, "identify", x, y)
690 return self.tk.getboolean(self.tk.call(self._w, "validate"))
718 return self.tk.getint(self.tk.call(self._w, "current"))
719 return self.tk.call(self._w, "current", newindex)
[all …]
Ddialog.py16 'tk_dialog', self._w,
/external/webrtc/webrtc/system_wrappers/source/
Dtimestamp_extrapolator.cc48 _w[0] = 90.0; in Reset()
49 _w[1] = 0; in Reset()
101 _w[1] = -_w[0] * tMs; in Update()
108 static_cast<double>(tMs) * _w[0] - _w[1]; in Update()
127 _w[0] = _w[0] + K[0] * residual; in Update()
128 _w[1] = _w[1] + K[1] * residual; in Update()
168 if (_w[0] < 1e-3) in ExtrapolateLocalTime()
177 static_cast<double>(_startMs) + (timestampDiff - _w[1]) / in ExtrapolateLocalTime()
178 _w[0] + 0.5); in ExtrapolateLocalTime()
/external/clang/test/CXX/lex/lex.literal/lex.ext/
Dp7.cpp13 long double operator "" _w(long double);
14 std::string operator "" _w(const char16_t*, size_t);
15 unsigned operator "" _w(const char*);
17 auto v1 = 1.2_w; // calls operator""_w(1.2L) in main()
18 auto v2 = u"one"_w; // calls operator""_w(u"one", 3) in main()
19 auto v3 = 12_w; // calls operator""_w("12") in main()
20 …"two"_w; // expected-error {{no matching literal operator for call to 'operator""_w' wi… in main()
/external/python/cpython3/Lib/json/
Ddecoder.py137 memo=None, _w=WHITESPACE.match, _ws=WHITESPACE_STR): argument
151 end = _w(s, end).end()
172 end = _w(s, end).end()
181 end = _w(s, end + 1).end()
193 end = _w(s, end + 1).end()
203 end = _w(s, end).end()
217 def JSONArray(s_and_end, scan_once, _w=WHITESPACE.match, _ws=WHITESPACE_STR): argument
222 end = _w(s, end + 1).end()
236 end = _w(s, end + 1).end()
247 end = _w(s, end + 1).end()
[all …]
/external/python/cpython2/Lib/json/
Ddecoder.py149 object_pairs_hook, _w=WHITESPACE.match, _ws=WHITESPACE_STR): argument
159 end = _w(s, end).end()
180 end = _w(s, end).end()
189 end = _w(s, end + 1).end()
202 end = _w(s, end + 1).end()
219 end = _w(s, end + 1).end()
236 def JSONArray(s_and_end, scan_once, _w=WHITESPACE.match, _ws=WHITESPACE_STR): argument
241 end = _w(s, end + 1).end()
255 end = _w(s, end + 1).end()
266 end = _w(s, end + 1).end()
[all …]
/external/tensorflow/tensorflow/contrib/factorization/python/ops/
Dgmm_ops.py137 self._w = [None] * num_shards
249 for w in self._w:
366 self._w[shard_id] = array_ops.reshape(
379 self._w[shard_id], 0, keepdims=True)
383 self._w[shard_id], array_ops.squeeze(shard, [0]), transpose_a=True),
390 array_ops.expand_dims(x_trans[k, :, :] * self._w[shard_id][:, k], 0)
399 with ops.control_dependencies(self._w):
457 op.append(prior_probs + math_ops.log(self._w[shard_id]))
/external/python/cpython2/Lib/idlelib/
DWidgetRedirector.py42 w = widget._w # widget's (full) Tk pathname
52 self.widget._w)
60 w = widget._w
/external/python/cpython3/Lib/idlelib/
Dredirector.py41 w = widget._w # widget's (full) Tk pathname
52 self.widget._w)
60 w = widget._w
/external/libaom/libaom/aom_dsp/
Dfastssim.c52 static void fs_ctx_init(fs_ctx *_ctx, int _w, int _h, int _nlevels) { in fs_ctx_init() argument
58 lw = (_w + 1) >> 1; in fs_ctx_init()
79 lw = (_w + 1) >> 1; in fs_ctx_init()
143 int _s2ystride, int _w, int _h, uint32_t shift, in fs_downsample_level0() argument
164 i1 = FS_MINI(i0 + 1, _w); in fs_downsample_level0()
443 int _dystride, int _w, int _h, uint32_t _bd, in calc_ssim() argument
449 fs_ctx_init(&ctx, _w, _h, FS_NLEVELS); in calc_ssim()
450 fs_downsample_level0(&ctx, _src, _systride, _dst, _dystride, _w, _h, _shift, in calc_ssim()
Dpsnrhvs.c119 int _w, int _h, int _step, const double _csf[8][8], in calc_psnrhvs() argument
157 for (x = 0; x < _w - 7; x += _step) { in calc_psnrhvs()
/external/libvpx/libvpx/vpx_dsp/
Dfastssim.c50 static void fs_ctx_init(fs_ctx *_ctx, int _w, int _h, int _nlevels) { in fs_ctx_init() argument
56 lw = (_w + 1) >> 1; in fs_ctx_init()
77 lw = (_w + 1) >> 1; in fs_ctx_init()
141 int _s2ystride, int _w, int _h, uint32_t bd, in fs_downsample_level0() argument
162 i1 = FS_MINI(i0 + 1, _w); in fs_downsample_level0()
449 int _dystride, int _w, int _h, uint32_t _bd, in calc_ssim() argument
455 fs_ctx_init(&ctx, _w, _h, FS_NLEVELS); in calc_ssim()
456 fs_downsample_level0(&ctx, _src, _systride, _dst, _dystride, _w, _h, _bd, in calc_ssim()
Dpsnrhvs.c122 int _w, int _h, int _step, const double _csf[8][8], in calc_psnrhvs() argument
161 for (x = 0; x < _w - 7; x += _step) { in calc_psnrhvs()
/external/u-boot/drivers/net/
Dsmc91111.c185 word _w; in SMC_inb() local
187 _w = SMC_inw(dev, offset & ~((dword)1)); in SMC_inb()
188 return (offset & 1) ? (byte)(_w >> 8) : (byte)(_w); in SMC_inb()
193 word _w; in SMC_outb() local
195 _w = SMC_inw(dev, offset & ~((dword)1)); in SMC_outb()
198 (value<<8) | (_w & 0x00ff); in SMC_outb()
201 value | (_w & 0xff00); in SMC_outb()
/external/swiftshader/third_party/LLVM/include/llvm/
DIntrinsicsPTX.td28 def _w : Intrinsic<[llvm_i32_ty], [], [IntrNoMem]>,
29 GCCBuiltin<!strconcat(prefix, "_w")>;
/external/deqp/external/openglcts/modules/glesext/tessellation_shader/
DesextcTessellationShaderVertexSpacing.hpp135 _tess_coordinate(float _u, float _v, float _w) in _tess_coordinate()
139 this->w = _w; in _tess_coordinate()
/external/python/cpython2/Lib/idlelib/idle_test/
Dtest_widgetredir.py113 self.root.call(self.text._w, 'insert', 'hello')
119 self.assertEqual(self.root.call(self.text._w, 'insert', 'boo'), '')
/external/python/cpython3/Lib/idlelib/idle_test/
Dtest_redirector.py112 self.root.call(self.text._w, 'insert', 'hello')
118 self.assertEqual(self.root.call(self.text._w, 'insert', 'boo'), '')
/external/webrtc/webrtc/system_wrappers/include/
Dtimestamp_extrapolator.h33 double _w[2]; variable

12345678910