Home
last modified time | relevance | path

Searched refs:tcl (Results 1 - 20 of 20) sorted by relevance

/third_party/python/Lib/test/
H A Dtest_tcl.py30 tcl = Tcl()
31 _tk_patchlevel = tcl.info_patchlevel()
55 tcl = self.interp
56 tcl.eval('set a 1')
57 self.assertEqual(tcl.eval('set a'),'1')
60 tcl = self.interp
61 self.assertEqual(tcl.eval('set a "a\\0b"'), 'a\x00b')
64 tcl = self.interp
65 self.assertIn(tcl.eval(r'set a "<\ud83d\udcbb>"'), '<\U0001f4bb>')
68 tcl
[all...]
H A Dpythoninfo.py418 tcl = tkinter.Tcl()
419 patchlevel = tcl.call('info', 'patchlevel')
/third_party/python/Lib/tkinter/test/test_tkinter/
H A Dtest_loadtk.py14 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/
H A Dtest_browser.py99 tcl = list(transform(mock_pyclbr_tree, 'test'))
100 eq(tcl, [C0, f0])
101 eq(tcl[0].name, 'C0(base)')
102 eq(tcl[1].name, 'f0')
104 tcl = list(transform(mock_pyclbr_tree, 'test'))
105 eq(tcl[0].name, 'C0(base)')
107 tcl = list(transform(mock_pyclbr_tree, 'different name'))
108 eq(tcl, [])
114 tcl = list(transform(C0.children))
115 eq(tcl, [F
[all...]
/third_party/FatFs/documents/res/
H A Dapp3.c25 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/rust/crates/regex/bench/
H A Drun4 echo "Usage: $(basename $0) [rust | rust-bytes | pcre1 | pcre2 | re2 | onig | tcl ]" >&2
33 tcl)
34 exec cargo bench --bench bench --features re-tcl "$@"
/third_party/python/PCbuild/
H A Dprepare_tcltk.bat49 %MSBUILD% "%PCBUILD%\tcl.vcxproj" /p:Configuration=Release /p:Platform=Win32
53 %MSBUILD% "%PCBUILD%\tcl.vcxproj" /p:Configuration=Release /p:Platform=x64
57 %MSBUILD% "%PCBUILD%\tcl.vcxproj" /p:Configuration=Release /p:Platform=ARM64
H A Dget_externals.bat58 if NOT "%IncludeTkinterSrc%"=="false" set libraries=%libraries% tcl-core-8.6.12.1
/third_party/rust/crates/regex/bench/src/
H A Dbench.rs24 } else if #[cfg(feature = "re-tcl")] {
25 pub use ffi::tcl::Regex;
47 if #[cfg(feature = "re-tcl")] {
63 use crate::ffi::tcl::Text;
67 type Text = ffi::tcl::Text;
299 feature = "re-tcl"
/third_party/python/Lib/tkinter/test/
H A Dsupport.py103 tcl = tkinter.Tcl()
104 _tk_patchlevel = tcl.info_patchlevel()
H A Dwidget_tests.py257 # See https://core.tcl.tk/tk/info/31cd33dbf0
519 tcl = tkinter.Tcl()
520 print('patchlevel =', tcl.call('info', 'patchlevel'), flush=True)
/third_party/python/Lib/idlelib/
H A Drun.py30 import tkinter # Use tcl and, if startup fails, messagebox. namespace
94 tcl = tkinter.Tcl() variable
96 def handle_tk_events(tcl=tcl):
98 has been imported, a tcl interpreter has been created and tk has been
100 tcl.eval("update")
/third_party/rust/crates/regex/bench/src/ffi/
H A Dmod.rs13 #[cfg(feature = "re-tcl")]
14 pub mod tcl; modules
/third_party/python/Modules/
H A Dtkappinit.c16 #include <tcl.h>
H A D_tkinter.c48 #include <Tcl/tcl.h>
51 #include <tcl.h>
144 tcl_library_path = PyUnicode_FromString("\\tcl\\tcl" TCL_VERSION); in _get_tcl_lib_path()
162 Py_TCLTK_DIR "\\lib\\tcl" TCL_VERSION); in _get_tcl_lib_path()
1214 /* fall through: return tcl object. */ in FromObj()
1747 /* XXX Acquire tcl lock??? */ in SetVar()
1769 /* XXX must hold tcl lock already??? */ in SetVar()
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/src/
H A Dtime_zone_lookup_test.cc1053 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/python/Tools/msi/
H A Dbuildrelease.bat219 robocopy "%BUILD%\" "%OUTDIR%\%OUTDIR_PLAT%\binaries" *.exe *.dll *.pyd /XF "_test*" /XF "*_d.*" /XF "_freeze*" /XF "tcl*" /XF "tk*" /XF "*_test.*"
220 robocopy "%BUILD%\" "%OUTDIR%\%OUTDIR_PLAT%\symbols" *.pdb /XF "_test*" /XF "*_d.*" /XF "_freeze*" /XF "tcl*" /XF "tk*" /XF "*_test.*"
H A Dtestrelease.bat91 @set TCL_LIBRARY=%~2\Python\tcl\tcl8.6
/third_party/FatFs/source/
H A Dff.c4068 DWORD cl, pcl, ncl, tcl, tlen, ulen; in f_lseek() local
4086 tcl = cl; ncl = 0; ulen += 2; /* Top, length and used items */ in f_lseek()
4094 *tbl++ = ncl; *tbl++ = tcl; in f_lseek()
4529 DWORD n, tcl, val, count, fclust = 0, last_clust; in f_truncate() local
4541 tcl = (DWORD)(length / n) + ((length & (n - 1)) ? 1 : 0); /* Number of clusters required */ in f_truncate()
4549 if (count == tcl) in f_truncate()
5327 DWORD n, clst, stcl, scl, ncl, tcl, lclst, count, fclust = 0; local
5344 tcl = (DWORD)(exsz / n) + ((exsz & (n - 1)) ? 1 : 0); /* Number of clusters required */
5364 if (++ncl == tcl) { /* Link the mark of the end of chain */
5393 if (++ncl == tcl) { /* Lin
6907 DWORD val = 0, tcl, clust_size; global() local
[all...]
/third_party/sqlite/src/
H A Dsqlite3.c16010 /* See the tool/mkopcodeh.tcl script for details */
16237 ** JUMP opcode the better, so the mkopcodeh.tcl script that
21192 ** SQLite source tree at tool/mkctimec.tcl.
[all...]

Completed in 180 milliseconds