/third_party/python/Lib/test/ |
D | test_tcl.py | 30 tcl = Tcl() 31 patchlevel = tcl.call('info', 'patchlevel') 63 tcl = self.interp 64 tcl.eval('set a 1') 65 self.assertEqual(tcl.eval('set a'),'1') 68 tcl = self.interp 69 self.assertEqual(tcl.eval('set a "a\\0b"'), 'a\x00b') 72 tcl = self.interp 73 self.assertIn(tcl.eval(r'set a "<\ud83d\udcbb>"'), '<\U0001f4bb>') 76 tcl = self.interp [all …]
|
D | pythoninfo.py | 405 tcl = tkinter.Tcl() 406 patchlevel = tcl.call('info', 'patchlevel')
|
/third_party/python/Lib/tkinter/test/test_tkinter/ |
D | test_loadtk.py | 14 tcl = Tcl() 15 self.assertRaises(TclError,tcl.winfo_geometry) 16 tcl.loadtk() 17 self.assertEqual('1x1+0+0', tcl.winfo_geometry()) 18 tcl.destroy() 40 tcl = Tcl() 41 self.assertRaises(TclError, tcl.winfo_geometry) 42 self.assertRaises(TclError, tcl.loadtk)
|
/third_party/python/Lib/idlelib/idle_test/ |
D | test_browser.py | 89 tcl = list(transform(mock_pyclbr_tree, 'test')) 90 eq(tcl, [C0, f0]) 91 eq(tcl[0].name, 'C0(base)') 92 eq(tcl[1].name, 'f0') 94 tcl = list(transform(mock_pyclbr_tree, 'test')) 95 eq(tcl[0].name, 'C0(base)') 97 tcl = list(transform(mock_pyclbr_tree, 'different name')) 98 eq(tcl, []) 104 tcl = list(transform(C0.children)) 105 eq(tcl, [F1, C1]) [all …]
|
/third_party/FatFs/documents/res/ |
D | app3.c | 25 DWORD csz, tcl, ncl, ccl, cl; in allocate_contiguous_clusters() local 31 tcl = (len + csz - 1) / csz; /* Total number of clusters required */ in allocate_contiguous_clusters() 32 len = tcl * csz; /* Round-up file size to the cluster boundary */ in allocate_contiguous_clusters() 42 } while (++ncl < tcl); in allocate_contiguous_clusters() 43 if (ncl == tcl) /* Is the file contiguous? */ in allocate_contiguous_clusters() 67 } while (ncl < tcl); in allocate_contiguous_clusters()
|
/third_party/python/Doc/library/ |
D | tkinter.tix.rst | 100 .. \ulink{Balloon}{http://tix.sourceforge.net/dist/current/demos/samples/Balloon.tcl} 110 .. \ulink{ButtonBox}{http://tix.sourceforge.net/dist/current/demos/samples/BtnBox.tcl} 122 .. \ulink{ComboBox}{http://tix.sourceforge.net/dist/current/demos/samples/ComboBox.tcl} 135 .. \ulink{Control}{http://tix.sourceforge.net/dist/current/demos/samples/Control.tcl} 146 .. \ulink{LabelEntry}{http://tix.sourceforge.net/dist/current/demos/samples/LabEntry.tcl} 158 .. \ulink{LabelFrame}{http://tix.sourceforge.net/dist/current/demos/samples/LabFrame.tcl} 169 .. \ulink{Meter}{http://tix.sourceforge.net/dist/current/demos/samples/Meter.tcl} 179 .. \ulink{OptionMenu}{http://tix.sourceforge.net/dist/current/demos/samples/OptMenu.tcl} 191 .. \ulink{PopupMenu}{http://tix.sourceforge.net/dist/current/demos/samples/PopMenu.tcl} 202 .. \ulink{Select}{http://tix.sourceforge.net/dist/current/demos/samples/Select.tcl} [all …]
|
D | tkinter.rst | 50 * `Tk commands <https://www.tcl.tk/man/tcl8.6/TkCmd/contents.htm>`_ 53 * `Tcl/Tk Home Page <https://www.tcl.tk>`_ 93 Tk is a `Tcl package <http://wiki.tcl.tk/37432>`_ implemented in C 394 As noted, the official `Tk commands <https://www.tcl.tk/man/tcl8.6/TkCmd/contents.htm>`_ 423 `ttk::button <https://www.tcl.tk/man/tcl8.6/TkCmd/ttk_button.htm>`_ 426 `grid <https://www.tcl.tk/man/tcl8.6/TkCmd/grid.htm>`_). 429 `options <https://www.tcl.tk/man/tcl8.6/TkCmd/options.htm>`_ or 430 `ttk::widget <https://www.tcl.tk/man/tcl8.6/TkCmd/ttk_widget.htm>`_ man 436 `winfo <https://www.tcl.tk/man/tcl8.6/TkCmd/winfo.htm>`_ man page.
|
/third_party/rust/crates/regex/bench/ |
D | run | 33 tcl) 34 exec cargo bench --bench bench --features re-tcl "$@"
|
D | Cargo.toml | 53 re-tcl = []
|
/third_party/rust/crates/regex/bench/src/ |
D | bench.rs | 25 pub use ffi::tcl::Regex; 63 use crate::ffi::tcl::Text; 67 type Text = ffi::tcl::Text;
|
D | main.rs | 133 use ffi::tcl::{Regex, Text}; in count_tcl()
|
/third_party/python/PCbuild/ |
D | prepare_tcltk.bat | 49 %MSBUILD% "%PCBUILD%\tcl.vcxproj" /p:Configuration=Release /p:Platform=Win32 53 %MSBUILD% "%PCBUILD%\tcl.vcxproj" /p:Configuration=Release /p:Platform=x64
|
/third_party/skia/third_party/externals/egl-registry/ |
D | README.md | 19 * registry.tcl - extension number registry. Documents the names and index 50 * Allocate an extension number in registry.tcl (follow the existing 73 registry.tcl / egl.xml, but isn't at present).
|
/third_party/python/Lib/tkinter/test/ |
D | support.py | 103 tcl = tkinter.Tcl() 104 patchlevel = tcl.call('info', 'patchlevel')
|
D | widget_tests.py | 540 tcl = tkinter.Tcl() 541 print('patchlevel =', tcl.call('info', 'patchlevel'))
|
/third_party/mbedtls/ |
D | CMakeLists.txt | 330 COMMAND sed -i.bak s+/usr/bin/valgrind+`which valgrind`+ DartConfiguration.tcl 334 COMMAND mv DartConfiguration.tcl.bak DartConfiguration.tcl 341 # Copy (don't link) DartConfiguration.tcl, needed for memcheck, to 343 configure_file(${CMAKE_CURRENT_SOURCE_DIR}/DartConfiguration.tcl 344 ${CMAKE_CURRENT_BINARY_DIR}/DartConfiguration.tcl COPYONLY)
|
/third_party/python/Lib/idlelib/ |
D | run.py | 94 tcl = tkinter.Tcl() variable 96 def handle_tk_events(tcl=tcl): argument 100 tcl.eval("update")
|
/third_party/EGL/ |
D | README.md | 19 * registry.tcl - extension number registry. Documents the names and index 49 * Allocate an extension number in registry.tcl (follow the existing 72 registry.tcl / egl.xml, but isn't at present).
|
/third_party/rust/crates/regex/bench/src/ffi/ |
D | mod.rs | 14 pub mod tcl; module
|
/third_party/icu/vendor/double-conversion/upstream/ |
D | .gitignore | 29 DartConfiguration.tcl
|
/third_party/ltp/testcases/kdump/lib/ |
D | test.sh | 238 expect -f ./ssh.tcl "/etc/init.d/kdump propagate" "${SCP_PASS}" 261 expect -f ./ssh.tcl "/etc/init.d/kdump propagate" "${SCP_PASS}"
|
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/src/ |
D | time_zone_lookup_test.cc | 1053 const auto tcl = zi.lookup(transition.to); in TEST() local 1056 if (tcl.kind == time_zone::civil_lookup::UNIQUE) { in TEST() 1068 ASSERT_EQ(time_zone::civil_lookup::REPEATED, tcl.kind); in TEST() 1071 ASSERT_EQ(time_zone::civil_lookup::UNIQUE, tcl.kind); in TEST()
|
/third_party/openmax/ |
D | README.md | 35 * Allocate an extension number in registry.tcl (follow the existing
|
/third_party/zlib/ |
D | README | 49 zlib is built into tcl: http://wiki.tcl.tk/4610 .
|
/third_party/mesa3d/docs/relnotes/ |
D | 9.0.2.rst | 258 - r200: fix broken tcl lighting 259 - radeon/r200: Fix tcl culling
|