| /NextBSD/contrib/nvi/vi/ |
| HD | v_word.c | 121 if (cs.cs_flags == CS_EMP || (cs.cs_flags == 0 && ISBLANK(cs.cs_ch))) { in fword() 149 if (cs.cs_flags != 0 || ISBLANK(cs.cs_ch)) in fword() 181 if (cs.cs_flags != 0 || ISBLANK(cs.cs_ch)) in fword() 200 if (cs.cs_flags != 0 || ISBLANK(cs.cs_ch)) in fword() 280 if (cs.cs_flags == 0 && !ISBLANK(cs.cs_ch)) { in eword() 283 if (cs.cs_flags == 0 && !ISBLANK(cs.cs_ch)) in eword() 302 if (cs.cs_flags != 0 || ISBLANK(cs.cs_ch)) in eword() 331 if (cs.cs_flags != 0 || ISBLANK(cs.cs_ch)) in eword() 348 if (cs.cs_flags != 0 || ISBLANK(cs.cs_ch)) in eword() 427 if (cs.cs_flags == 0 && !ISBLANK(cs.cs_ch)) { in bword() [all …]
|
| HD | getc.c | 124 if (csp->cs_flags != 0 || !ISBLANK(csp->cs_ch)) in cs_fspace() 129 if (csp->cs_flags != 0 || !ISBLANK(csp->cs_ch)) in cs_fspace() 148 (csp->cs_flags == 0 && ISBLANK(csp->cs_ch))) in cs_fblank() 217 (csp->cs_flags == 0 && ISBLANK(csp->cs_ch))) in cs_bblank()
|
| HD | v_txt.c | 1081 while (tp->cno > max && ISBLANK(tp->lb[tp->cno - 1])) { in v_txt() 1110 if (ISBLANK(tp->lb[tp->cno - 1])) in v_txt() 1128 || ISBLANK(tp->lb[tp->cno - 1])) in v_txt()
|
| /NextBSD/contrib/nvi/common/ |
| HD | multibyte.h | 45 #define ISBLANK iswblank macro 79 #define ISBLANK isblank macro
|
| HD | util.c | 104 len -= off; len && ISBLANK(*p); ++cnt, ++p, --len); in nonblank()
|
| /NextBSD/contrib/ncurses/ncurses/tty/ |
| HD | tty_update.c | 506 return (ISBLANK(CHDEREF(ch)) && in can_clear_with() 786 if (ISBLANK(thisline[j]) && SAFE(SP_PARM, turnon)) { in TINFO_DOUPDATE() 794 || !ISBLANK(thisline[j - k]) in TINFO_DOUPDATE() 799 (ISBLANK(thisline[j - k]) in TINFO_DOUPDATE() 842 && ISBLANK(lastline[n]) in TINFO_DOUPDATE() 850 || !ISBLANK(lastline[n + k]) in TINFO_DOUPDATE() 856 (ISBLANK(lastline[n + k]) in TINFO_DOUPDATE() 1304 if (ISBLANK(newLine[n]) in TransformLine() 1322 if (!ISBLANK(newLine[n]) in TransformLine()
|
| /NextBSD/contrib/nvi/ex/ |
| HD | ex_abbrev.c | 72 if (ISBLANK(p[0])) { in ex_abbr()
|
| /NextBSD/contrib/binutils/include/ |
| HD | safe-ctype.h | 95 #define ISBLANK(c) _sch_test(c, _sch_isblank) macro
|
| /NextBSD/contrib/gcclibs/include/ |
| HD | safe-ctype.h | 95 #define ISBLANK(c) _sch_test(c, _sch_isblank) macro
|
| /NextBSD/contrib/gdb/include/ |
| HD | safe-ctype.h | 95 #define ISBLANK(c) _sch_test(c, _sch_isblank) macro
|
| /NextBSD/contrib/gcclibs/libiberty/ |
| HD | argv.c | 182 while (ISBLANK (*input)) in buildargv()
|
| HD | regex.c | 218 # define ISBLANK(c) (ISASCII (c) && isblank (c)) macro 220 # define ISBLANK(c) ((c) == ' ' || (c) == '\t') macro 3281 || (is_blank && ISBLANK (ch)) in PREFIX()
|
| HD | functions.texi | 468 @deffnx Extension ISBLANK (@var{c})
|
| HD | ChangeLog | 231 (ISBLANK): Remove. 233 (buildargv): Use ISSPACE instead of ISBLANK. 2968 * argv.c: Define ISBLANK and use it, not isspace.
|
| /NextBSD/contrib/binutils/libiberty/ |
| HD | argv.c | 182 while (ISBLANK (*input)) in buildargv()
|
| HD | regex.c | 218 # define ISBLANK(c) (ISASCII (c) && isblank (c)) macro 220 # define ISBLANK(c) ((c) == ' ' || (c) == '\t') macro 3281 || (is_blank && ISBLANK (ch)) in PREFIX()
|
| HD | functions.texi | 484 @deffnx Extension ISBLANK (@var{c})
|
| HD | ChangeLog | 429 (ISBLANK): Remove. 431 (buildargv): Use ISSPACE instead of ISBLANK. 3166 * argv.c: Define ISBLANK and use it, not isspace.
|
| /NextBSD/contrib/gcc/ |
| HD | pretty-print.c | 115 while (p != end && !ISBLANK (*p) && *p != '\n') in pp_wrap_text() 124 if (start != end && ISBLANK (*start)) in pp_wrap_text()
|
| /NextBSD/contrib/ncurses/form/ |
| HD | frm_driver.c | 368 while ((p < end) && ISBLANK(*p)) in Get_Start_Of_Data() 389 while ((p > buf) && ISBLANK(p[-1])) in After_End_Of_Data() 410 while ((p < end) && !ISBLANK(*p)) in Get_First_Whitespace_Character() 431 while ((p > buf) && !ISBLANK(p[-1])) in After_Last_Whitespace_Character() 2838 if (ISBLANK(*cp)) in FE_Delete_Word() 2851 if ((s != cp) && !ISBLANK(*s)) in FE_Delete_Word() 3119 while (ISBLANK(*bp)) in Check_Field()
|
| /NextBSD/contrib/ncurses/ncurses/widechar/ |
| HD | lib_add_wch.c | 67 if (ISBLANK(ch) in render_char()
|
| /NextBSD/contrib/gcclibs/libcpp/ |
| HD | internal.h | 477 #define is_hspace(x) ISBLANK(x)
|
| /NextBSD/contrib/ncurses/ncurses/base/ |
| HD | lib_addch.c | 63 if (ISBLANK(ch) in render_char()
|
| /NextBSD/contrib/binutils/ld/ |
| HD | deffilep.y | 1005 if (ISBLANK (c) ) /* '@' followed by whitespace. */ in def_lex()
|
| /NextBSD/contrib/ncurses/ncurses/ |
| HD | curses.priv.h | 1433 #define ISBLANK(ch) ((ch).chars[0] == L' ' && (ch).chars[1] == L'\0') macro 1475 #define ISBLANK(ch) (CharOf(ch) == ' ') macro
|