/freebsd/contrib/nvi/vi/ |
H A D | v_itxt.c | 89 int isempty; in v_ia() local 97 if (db_eget(sp, sp->lno, &p, &len, &isempty)) { in v_ia() 98 if (!isempty) in v_ia() 145 int isempty; in v_ii() local 152 if (db_eget(sp, sp->lno, &p, &len, &isempty)) { in v_ii() 153 if (!isempty) in v_ii() 246 int isempty, lmode, rval; in v_change() local 264 db_eget(sp, vp->m_start.lno, &p, &len, &isempty)) { in v_change() 265 if (!isempty) in v_change() 357 if (db_eget(sp, vp->m_start.lno, &p, &len, &isempty)) { in v_change() [all …]
|
H A D | v_right.c | 33 int isempty; in v_right() local 35 if (db_eget(sp, vp->m_start.lno, NULL, &len, &isempty)) { in v_right() 36 if (isempty) in v_right() 83 int isempty; in v_dollar() local 116 if (db_eget(sp, vp->m_stop.lno, NULL, &len, &isempty)) { in v_dollar() 117 if (!isempty) in v_dollar()
|
H A D | v_ch.c | 137 int isempty; in v_chf() local 151 if (db_eget(sp, vp->m_start.lno, &p, &len, &isempty)) { in v_chf() 152 if (isempty) in v_chf() 228 int isempty; in v_chF() local 243 if (db_eget(sp, vp->m_start.lno, &p, &len, &isempty)) { in v_chF() 244 if (isempty) in v_chF()
|
H A D | v_xchar.c | 33 int isempty; in v_xchar() local 35 if (db_eget(sp, vp->m_start.lno, NULL, &len, &isempty)) { in v_xchar() 36 if (isempty) in v_xchar()
|
H A D | getc.c | 44 int isempty; in cs_init() local 46 if (db_eget(sp, csp->cs_lno, &csp->cs_bp, &csp->cs_len, &isempty)) { in cs_init() 47 if (isempty) in cs_init()
|
H A D | v_match.c | 38 int cnt, isempty, matchc, startc, (*gc)(SCR *, VCS *); in v_match() local 59 if (db_eget(sp, vp->m_start.lno, &p, &len, &isempty)) { in v_match() 60 if (isempty) in v_match()
|
H A D | v_increment.c | 55 int base, isempty, rval; in v_increment() local 78 if (db_eget(sp, vp->m_start.lno, &p, &len, &isempty)) { in v_increment() 79 if (isempty) in v_increment()
|
H A D | v_paragraph.c | 73 int isempty; in v_paragraphf() local 171 if (db_eget(sp, vp->m_start.lno, &p, &len, &isempty)) { in v_paragraphf() 172 if (!isempty) in v_paragraphf()
|
H A D | vs_refresh.c | 168 int ch = 0, didpaint, isempty, leftright_warp; in vs_paint() local 462 if (db_eget(sp, LNO, &p, &len, &isempty)) { in vs_paint() 463 if (isempty) in vs_paint()
|
/freebsd/contrib/lua/src/ |
H A D | ltable.c | 353 if (!isempty(&t->array[i])) { /* a non-empty entry? */ in luaH_next() 360 if (!isempty(gval(gnode(t, i)))) { /* a non-empty entry? */ in luaH_next() 446 if (!isempty(&t->array[i-1])) in numusearray() 462 if (!isempty(gval(n))) { in numusehash() 513 if (!isempty(gval(old))) { in reinsert() 566 if (!isempty(&t->array[i])) in luaH_resize() 683 if (!isempty(gval(mp)) || isdummy(t)) { /* main position is taken? */ in luaH_newkey() 717 lua_assert(isempty(gval(mp))); in luaH_newkey() 864 if (isempty(luaH_getint(t, j))) /* t[j] not present? */ in hash_search() 869 } while (!isempty(luaH_getint(t, j))); /* repeat until an absent t[j] */ in hash_search() [all …]
|
H A D | lvm.h | 89 !isempty(slot))) /* result not empty? */ 101 !isempty(slot))) /* result not empty? */
|
H A D | lgc.c | 172 lua_assert(isempty(gval(n))); in clearkey() 452 if (isempty(gval(n))) /* entry is empty? */ in traverseweakvalue() 498 if (isempty(gval(n))) /* entry is empty? */ in traverseephemeron() 530 if (isempty(gval(n))) /* entry is empty? */ in traversestrongtable() 731 if (isempty(gval(n))) /* is entry empty? */ in clearbykeys() 756 if (isempty(gval(n))) /* is entry empty? */ in clearbyvalues()
|
H A D | lobject.h | 217 #define isempty(v) ttisnil(v) macro
|
H A D | ltests.c | 368 if (!isempty(gval(n))) { in checktable() 1014 if (!isempty(gval(gnode(t, i))) || in table_query()
|
H A D | lvm.c | 304 lua_assert(isempty(slot)); in luaV_finishget() 341 lua_assert(isempty(slot)); /* slot must be empty */ in luaV_finishset()
|
H A D | lapi.c | 715 if (isempty(val)) /* avoid copying empty items to the stack */ in finishrawget()
|
/freebsd/contrib/nvi/common/ |
H A D | util.c | 79 int isempty; in nonblank() local 86 if (db_eget(sp, lno, &p, &len, &isempty)) in nonblank() 87 return (!isempty); in nonblank()
|
/freebsd/contrib/nvi/ex/ |
H A D | ex_script.c | 301 int isempty, matchprompt, nw, rval; in sscr_exec() local 320 if (db_eget(sp, lno, &wp, &wlen, &isempty)) { in sscr_exec() 321 if (isempty) in sscr_exec()
|