Searched refs:WCWIDTH (Results 1 - 6 of 6) sorted by relevance

/macosx-10.10/zsh-61/zsh/Src/
H A Dzsh.h2795 #define WCWIDTH(wc) mk_wcwidth(wc) macro
2797 #define WCWIDTH(wc) wcwidth(wc) macro
2805 * 1. We never expose WCWIDTH() in the non-multibyte world since
2845 #define IS_COMBINING(wc) (WCWIDTH(wc) == 0 && !iswcntrl(wc))
2847 #define IS_COMBINING(wc) (WCWIDTH(wc) == 0)
2857 #define IS_BASECHAR(wc) (iswgraph(wc) && WCWIDTH(wc) > 0)
H A Dprompt.c1105 * If the character isn't printable, WCWIDTH() returns
1108 wcw = WCWIDTH(wc);
1323 wcw = WCWIDTH(cc);
1395 wcw = WCWIDTH(cc);
H A Dsubst.c724 width = WCWIDTH(wc);
730 return WCWIDTH(wc) > 0 ? 1 : 0;
H A Dutils.c574 int wcw = WCWIDTH(c);
607 wcw = WCWIDTH(wc);
4632 int wcw = WCWIDTH(wc);
H A Dbuiltin.c3907 wcw = WCWIDTH(wc);
/macosx-10.10/zsh-61/zsh/Src/Zle/
H A Dzle_refresh.c1248 iswprint(*t) && (width = WCWIDTH(*t)) > 0) {
1431 int width = WCWIDTH(*u);
2245 trick if we are using WCWIDTH() on the prompt. It's not that
2436 else if (iswprint(tmpline[t0]) && ((width = WCWIDTH(tmpline[t0])) > 0)) {
2525 (width = WCWIDTH(tmpline[t0])) > 0) {

Completed in 115 milliseconds