Home
last modified time | relevance | path

Searched refs:wcswidth (Results 1 – 25 of 878) sorted by relevance

12345678910>>...36

/dports/math/sc-im/sc-im-0.8.2/src/
H A Dcmds_edit.c105 inputline_pos = wcswidth(inputline, real_inputline_pos); in do_editmode()
114 inputline_pos = wcswidth(inputline, real_inputline_pos); in do_editmode()
216 inputline_pos = wcswidth(inputline, real_inputline_pos); in do_editmode()
227 inputline_pos = wcswidth(inputline, real_inputline_pos); in do_editmode()
238 inputline_pos = wcswidth(inputline, real_inputline_pos); in do_editmode()
302 inputline_pos = wcswidth(inputline, real_inputline_pos); in do_editmode()
308 inputline_pos = wcswidth(inputline, real_inputline_pos); in do_editmode()
314 inputline_pos = wcswidth(inputline, real_inputline_pos); in do_editmode()
320 inputline_pos = wcswidth(inputline, real_inputline_pos); in do_editmode()
326 inputline_pos = wcswidth(inputline, real_inputline_pos); in do_editmode()
[all …]
/dports/devel/gnulib/gnulib-20140202-stable/modules/
H A Dwcswidth2 wcswidth() function: determine number of screen columns needed for a
6 lib/wcswidth.c
7 lib/wcswidth-impl.h
8 m4/wcswidth.m4
17 AC_LIBOBJ([wcswidth])
19 gl_WCHAR_MODULE_INDICATOR([wcswidth])
/dports/security/pkcs11-tools/pkcs11-tools-2.5.0/.gnulib/modules/
H A Dwcswidth2 wcswidth() function: determine number of screen columns needed for a
6 lib/wcswidth.c
7 lib/wcswidth-impl.h
8 m4/wcswidth.m4
17 AC_LIBOBJ([wcswidth])
19 gl_WCHAR_MODULE_INDICATOR([wcswidth])
/dports/net-p2p/bazarr/bazarr-1.0.2/libs/wcwidth/tests/
H A Dtest_core.py21 length_phrase = wcwidth.wcswidth(phrase)
42 length_phrase = wcwidth.wcswidth(phrase, end)
57 length_phrase = wcwidth.wcswidth(phrase, len(phrase))
73 length_phrase = wcwidth.wcswidth(phrase, len(phrase))
89 length_phrase = wcwidth.wcswidth(phrase, len(phrase))
104 length_phrase = wcwidth.wcswidth(phrase, len(phrase))
119 length_phrase = wcwidth.wcswidth(phrase, len(phrase))
134 length_phrase = wcwidth.wcswidth(phrase, len(phrase))
/dports/devel/py-wcwidth/wcwidth-0.1.8/wcwidth/tests/
H A Dtest_core.py21 length_phrase = wcwidth.wcswidth(phrase)
42 length_phrase = wcwidth.wcswidth(phrase, end)
57 length_phrase = wcwidth.wcswidth(phrase, len(phrase))
73 length_phrase = wcwidth.wcswidth(phrase, len(phrase))
89 length_phrase = wcwidth.wcswidth(phrase, len(phrase))
104 length_phrase = wcwidth.wcswidth(phrase, len(phrase))
119 length_phrase = wcwidth.wcswidth(phrase, len(phrase))
134 length_phrase = wcwidth.wcswidth(phrase, len(phrase))
/dports/security/pkcs11-tools/pkcs11-tools-2.5.0/.gnulib/doc/posix-functions/
H A Dwcswidth.texi1 @node wcswidth
2 @section @code{wcswidth}
3 @findex wcswidth
5 POSIX specification:@* @url{https://pubs.opengroup.org/onlinepubs/9699919799/functions/wcswidth.htm…
7 Gnulib module: wcswidth
/dports/x11/kitty/kitty-0.23.1/kittens/tui/
H A Dline_edit.py7 from kitty.fast_data_types import truncate_point_for_length, wcswidth
34 cursor_pos = self.cursor_pos + wcswidth(prompt)
58 self.cursor_pos += wcswidth(text)
68 self.cursor_pos = wcswidth(nbefore)
78 self.cursor_pos = wcswidth(before)
89 self.cursor_pos = wcswidth(before)
95 max_pos = wcswidth(self.current_input)
100 self.cursor_pos += 1 + int(wcswidth(before) == self.cursor_pos)
129 self.cursor_pos = wcswidth(self.current_input)
/dports/devel/gnulib/gnulib-20140202-stable/doc/posix-functions/
H A Dwcswidth.texi1 @node wcswidth
2 @section @code{wcswidth}
3 @findex wcswidth
5 POSIX specification:@* @url{http://www.opengroup.org/onlinepubs/9699919799/functions/wcswidth.html}
7 Gnulib module: wcswidth
/dports/net-im/toot/toot-0.28.0/toot/
H A Dwcstring.py7 from wcwidth import wcwidth, wcswidth
46 word_len = wcswidth(word)
80 text_length = wcswidth(text)
103 text_length = wcswidth(text)
113 text_length = wcswidth(text)
/dports/devel/tcllib/tcllib-1.20/modules/textutil/
H A Dtextutil.test26 useLocal wcswidth.tcl textutil::wcswidth
168 test textutil-8.0 {wcswidth} -body {
169 textutil::wcswidth {The Quick Brown Fox}
172 test textutil-8.1 {wcswidth} -body {
173 textutil::wcswidth {道德經}
176 test textutil-8.2 {wcswidth} -body {
177 textutil::wcswidth {道德經 of the fox}
/dports/devel/tcllibc/tcllib-1.20/modules/textutil/
H A Dtextutil.test26 useLocal wcswidth.tcl textutil::wcswidth
168 test textutil-8.0 {wcswidth} -body {
169 textutil::wcswidth {The Quick Brown Fox}
172 test textutil-8.1 {wcswidth} -body {
173 textutil::wcswidth {道德經}
176 test textutil-8.2 {wcswidth} -body {
177 textutil::wcswidth {道德經 of the fox}
/dports/devel/py-cwcwidth/cwcwidth-0.1.5/
H A DREADME.md3 `cwcwidth` provides Python bindings for `wcwidth` and `wcswidth` functions defined in POSIX.1-2001
34 >>> cwcwidth.wcswidth("コ")
36 >>> cwcwidth.wcswidth("コンニチハ, セカイ!")
38 >>> cwcwidth.wcswidth("コンニチハ, セカイ!", 5)
46 >>> timeit.timeit(lambda: wcwidth.wcswidth("コンニチハ, セカイ!"))
48 >>> timeit.timeit(lambda: cwcwidth.wcswidth("コンニチハ, セカイ!"))
H A DPKG-INFO21 `cwcwidth` provides Python bindings for `wcwidth` and `wcswidth` functions defined in POSIX.1-2001
52 >>> cwcwidth.wcswidth("コ")
54 >>> cwcwidth.wcswidth("コンニチハ, セカイ!")
56 >>> cwcwidth.wcswidth("コンニチハ, セカイ!", 5)
64 >>> timeit.timeit(lambda: wcwidth.wcswidth("コンニチハ, セカイ!"))
66 >>> timeit.timeit(lambda: cwcwidth.wcswidth("コンニチハ, セカイ!"))
/dports/devel/py-cwcwidth/cwcwidth-0.1.5/cwcwidth.egg-info/
H A DPKG-INFO21 `cwcwidth` provides Python bindings for `wcwidth` and `wcswidth` functions defined in POSIX.1-2001
52 >>> cwcwidth.wcswidth("コ")
54 >>> cwcwidth.wcswidth("コンニチハ, セカイ!")
56 >>> cwcwidth.wcswidth("コンニチハ, セカイ!", 5)
64 >>> timeit.timeit(lambda: wcwidth.wcswidth("コンニチハ, セカイ!"))
66 >>> timeit.timeit(lambda: cwcwidth.wcswidth("コンニチハ, セカイ!"))
/dports/devel/gnulib/gnulib-20140202-stable/m4/
H A Dwcswidth.m41 # wcswidth.m4 serial 2
11 AC_CHECK_FUNCS_ONCE([wcswidth])
16 dnl If wcwidth needed to be replaced, wcswidth needs to be replaced
/dports/misc/gnuls/coreutils-8.30/m4/
H A Dwcswidth.m41 # wcswidth.m4 serial 2
11 AC_CHECK_FUNCS_ONCE([wcswidth])
16 dnl If wcwidth needed to be replaced, wcswidth needs to be replaced
/dports/security/pkcs11-tools/pkcs11-tools-2.5.0/.gnulib/m4/
H A Dwcswidth.m41 # wcswidth.m4 serial 2
11 AC_CHECK_FUNCS_ONCE([wcswidth])
16 dnl If wcwidth needed to be replaced, wcswidth needs to be replaced
/dports/sysutils/coreutils/coreutils-8.32/m4/
H A Dwcswidth.m41 # wcswidth.m4 serial 2
11 AC_CHECK_FUNCS_ONCE([wcswidth])
16 dnl If wcwidth needed to be replaced, wcswidth needs to be replaced
/dports/finance/hs-hledger-ui/hledger-ui-1.19/_cabal_deps/vty-5.33/src/Graphics/Text/
H A DWidth.hs15 , wcswidth
31 wcswidth :: String -> Int
32 wcswidth = foldl' (\l c -> wcwidth c + l) 0 function
/dports/devel/hs-git-brunch/git-brunch-1.5.1.0/_cabal_deps/vty-5.33/src/Graphics/Text/
H A DWidth.hs15 , wcswidth
31 wcswidth :: String -> Int
32 wcswidth = foldl' (\l c -> wcwidth c + l) 0 function
/dports/net-im/matterhorn/matterhorn-50200.13.0/_cabal_deps/vty-5.32/src/Graphics/Text/
H A DWidth.hs15 , wcswidth
31 wcswidth :: String -> Int
32 wcswidth = foldl' (\l c -> wcwidth c + l) 0 function
/dports/misc/hs-hascard/hascard-0.3.0.1/_cabal_deps/vty-5.30/src/Graphics/Text/
H A DWidth.hs15 , wcswidth
31 wcswidth :: String -> Int
32 wcswidth = foldl' (\l c -> wcwidth c + l) 0 function
/dports/devel/py-wcwidth/wcwidth-0.1.8/
H A DPKG-INFO46 `wcwidth(3)`_ and `wcswidth(3)`_ C functions of which this python module's
74 >>> from wcwidth import wcswidth
76 >>> text_len = wcswidth(text)
79 wcwidth, wcswidth
82 character*, and ``wcswidth()`` to determine the length of a several, or a
100 Function ``wcswidth()`` simply returns the sum of all values for each character
193 * **Feature**: ``wcswidth()`` now determines printable length
202 * **Bugfix**: 2nd parameter of wcswidth was not honored.
237 .. _`wcswidth(3)`: http://man7.org/linux/man-pages/man3/wcswidth.3.html
239 Keywords: terminal,emulator,wcwidth,wcswidth,cjk,combining,xterm,console
H A DREADME.rst38 `wcwidth(3)`_ and `wcswidth(3)`_ C functions of which this python module's
66 >>> from wcwidth import wcswidth
68 >>> text_len = wcswidth(text)
71 wcwidth, wcswidth
74 character*, and ``wcswidth()`` to determine the length of a several, or a
92 Function ``wcswidth()`` simply returns the sum of all values for each character
185 * **Feature**: ``wcswidth()`` now determines printable length
194 * **Bugfix**: 2nd parameter of wcswidth was not honored.
229 .. _`wcswidth(3)`: http://man7.org/linux/man-pages/man3/wcswidth.3.html
/dports/devel/py-wcwidth/wcwidth-0.1.8/wcwidth.egg-info/
H A DPKG-INFO46 `wcwidth(3)`_ and `wcswidth(3)`_ C functions of which this python module's
74 >>> from wcwidth import wcswidth
76 >>> text_len = wcswidth(text)
79 wcwidth, wcswidth
82 character*, and ``wcswidth()`` to determine the length of a several, or a
100 Function ``wcswidth()`` simply returns the sum of all values for each character
193 * **Feature**: ``wcswidth()`` now determines printable length
202 * **Bugfix**: 2nd parameter of wcswidth was not honored.
237 .. _`wcswidth(3)`: http://man7.org/linux/man-pages/man3/wcswidth.3.html
239 Keywords: terminal,emulator,wcwidth,wcswidth,cjk,combining,xterm,console

12345678910>>...36