/external/python/cpython3/Lib/tkinter/ |
D | tix.py | 229 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__.py | 687 self.tk.call('tkwait', 'window', window._w) 696 self.tk.call('tkwait', 'visibility', window._w) 731 self.tk.call('focus', self._w) 738 self.tk.call('focus', '-force', self._w) 756 name = self.tk.call('focus', '-displayof', self._w) 763 name = self.tk.call('focus', '-lastfor', self._w) 781 name = self.tk.call('tk_focusNext', self._w) 787 name = self.tk.call('tk_focusPrev', self._w) 873 if 'displayof' not in kw: kw['displayof'] = self._w 882 if 'displayof' not in kw: kw['displayof'] = self._w [all …]
|
D | ttk.py | 565 return self.tk.call(self._w, "identify", x, y) 576 self.tk.call(self._w, "instate", ' '.join(statespec))) 593 return self.tk.splitlist(str(self.tk.call(self._w, "state", statespec))) 617 return self.tk.call(self._w, "invoke") 646 return self.tk.call(self._w, "invoke") 675 return self._getints(self.tk.call(self._w, "bbox", index)) 681 return self.tk.call(self._w, "identify", x, y) 688 return self.tk.getboolean(self.tk.call(self._w, "validate")) 716 return self.tk.getint(self.tk.call(self._w, "current")) 717 return self.tk.call(self._w, "current", newindex) [all …]
|
D | dialog.py | 17 'tk_dialog', self._w,
|
/external/python/cpython2/Lib/lib-tk/ |
D | Tix.py | 233 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 …]
|
D | Tkinter.py | 504 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 …]
|
D | ttk.py | 563 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 …]
|
D | Dialog.py | 19 'tk_dialog', self._w,
|
/external/webrtc/rtc_base/time/ |
D | timestamp_extrapolator.cc | 46 _w[0] = 90.0; in Reset() 47 _w[1] = 0; in Reset() 85 _w[1] = -_w[0] * tMs; in Update() 91 static_cast<double>(tMs) * _w[0] - _w[1]; in Update() 117 _w[0] = _w[0] + K[0] * residual; in Update() 118 _w[1] = _w[1] + K[1] * residual; in Update() 154 if (_w[0] < 1e-3) { in ExtrapolateLocalTime() 160 (timestampDiff - _w[1]) / _w[0] + 0.5); in ExtrapolateLocalTime()
|
D | timestamp_extrapolator.h | 32 double _w[2]; variable
|
/external/llvm-project/clang/test/CXX/lex/lex.literal/lex.ext/ |
D | p7.cpp | 13 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/clang/test/CXX/lex/lex.literal/lex.ext/ |
D | p7.cpp | 13 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/cpython2/Lib/json/ |
D | decoder.py | 149 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/python/cpython3/Lib/json/ |
D | decoder.py | 137 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/cpython3/Lib/idlelib/ |
D | redirector.py | 41 w = widget._w # widget's (full) Tk pathname 52 self.widget._w) 60 w = widget._w
|
/external/python/cpython2/Lib/idlelib/ |
D | WidgetRedirector.py | 42 w = widget._w # widget's (full) Tk pathname 52 self.widget._w) 60 w = widget._w
|
/external/libaom/libaom/aom_dsp/ |
D | fastssim.c | 52 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()
|
D | psnrhvs.c | 114 int _w, int _h, int _step, const double _csf[8][8], in calc_psnrhvs() argument 137 for (x = 0; x < _w; x++) { in calc_psnrhvs() 147 if (luma) delt = (sum1 - sum2) / (_w * _h); in calc_psnrhvs() 173 for (x = 0; x < _w - 7; x += _step) { in calc_psnrhvs()
|
/external/libvpx/libvpx/vpx_dsp/ |
D | fastssim.c | 50 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() 143 int _s2ystride, int _w, int _h, uint32_t bd, in fs_downsample_level0() argument 164 i1 = FS_MINI(i0 + 1, _w); in fs_downsample_level0() 453 int _dystride, int _w, int _h, uint32_t _bd, in calc_ssim() argument 459 fs_ctx_init(&ctx, _w, _h, FS_NLEVELS); in calc_ssim() 460 fs_downsample_level0(&ctx, _src, _systride, _dst, _dystride, _w, _h, _bd, in calc_ssim()
|
/external/libwebsockets/lib/event-libs/glib/ |
D | glib.c | 29 #define wsi_to_subclass(_w) ((_w)->w_read.glib.source) argument 30 #define wsi_to_gsource(_w) ((GSource *)wsi_to_subclass(_w)) argument
|
/external/deqp/external/openglcts/modules/glesext/tessellation_shader/ |
D | esextcTessellationShaderVertexSpacing.hpp | 135 _tess_coordinate(float _u, float _v, float _w) in _tess_coordinate() 139 this->w = _w; in _tess_coordinate()
|
/external/python/cpython3/Lib/idlelib/idle_test/ |
D | test_redirector.py | 112 self.root.call(self.text._w, 'insert', 'hello') 118 self.assertEqual(self.root.call(self.text._w, 'insert', 'boo'), '')
|
/external/python/cpython2/Lib/idlelib/idle_test/ |
D | test_widgetredir.py | 113 self.root.call(self.text._w, 'insert', 'hello') 119 self.assertEqual(self.root.call(self.text._w, 'insert', 'boo'), '')
|
/external/exoplayer/tree/testdata/src/test/assets/ts/ |
D | sample_h264_dts_audio.ts | 30 …���m���B�V�aҴu|�ej�m����l�kъr ��Ŏ�sW��u&Eok��t��{�yGo�g��~�#�a�nW9�(��"����_w�b��:���m:2(� 50 �w���{_w���C���V�\�|�9Y���L��@����^9��u�5�"�,&OW�"?:�$Ob��+I���;�m{��qc�`��m�L� �Trd��r…
|
D | sample_h264_mpeg_audio.ts | 30 …���m���B�V�aҴu|�ej�m����l�kъr ��Ŏ�sW��u&Eok��t��{�yGo�g��~�#�a�nW9�(��"����_w�b��:���m:2(� 50 �w���{_w���C���V�\�|�9Y���L��@����^9��u�5�"�,&OW�"?:�$Ob��+I���;�m{��qc�`��m�L� �Trd��r…
|