Lines Matching refs:GoodStr

48 #define GoodStr(a) (tstr[a].str != NULL && tstr[a].str[0] != '\0')  macro
458 if (GoodStr(T_me) && GoodStr(T_ue)) in SetTC()
462 if (GoodStr(T_me) && GoodStr(T_se)) in SetTC()
465 T_CanCEOL = GoodStr(T_ce); in SetTC()
466 T_CanDel = GoodStr(T_dc) || GoodStr(T_DC); in SetTC()
467 T_CanIns = GoodStr(T_im) || GoodStr(T_ic) || GoodStr(T_IC); in SetTC()
468 T_CanUP = GoodStr(T_up) || GoodStr(T_UP); in SetTC()
929 if (me_all && GoodStr(T_me)) { in SetAttributes()
939 if (GoodStr(T_md) && GoodStr(T_me)) { in SetAttributes()
945 if (GoodStr(T_md) && GoodStr(T_me)) { in SetAttributes()
947 if ((cur_atr & STANDOUT) && GoodStr(T_se)) { in SetAttributes()
951 if ((cur_atr & UNDER) && GoodStr(T_ue)) { in SetAttributes()
961 if (GoodStr(T_so) && GoodStr(T_se)) { in SetAttributes()
967 if (GoodStr(T_se)) { in SetAttributes()
975 if (GoodStr(T_us) && GoodStr(T_ue)) { in SetAttributes()
981 if (GoodStr(T_ue)) { in SetAttributes()
1046 if ((del > 1) && GoodStr(T_DO)) { in MoveToLine()
1059 if (GoodStr(T_UP) && (-del > 1 || !GoodStr(T_up))) in MoveToLine()
1063 if (GoodStr(T_up)) in MoveToLine()
1096 if ((del < -4 || del > 4) && GoodStr(T_ch)) in MoveToChar()
1102 if ((del > 4) && GoodStr(T_RI)) in MoveToChar()
1127 if ((-del > 4) && GoodStr(T_LE)) in MoveToChar()
1257 if (GoodStr(T_DC)) /* if I have multiple delete */ in DeleteChars()
1258 if ((num > 1) || !GoodStr(T_dc)) { /* if dc would be more expen. */ in DeleteChars()
1263 if (GoodStr(T_dm)) /* if I have delete mode */ in DeleteChars()
1266 if (GoodStr(T_dc)) /* else do one at a time */ in DeleteChars()
1270 if (GoodStr(T_ed)) /* if I have delete mode */ in DeleteChars()
1297 if (GoodStr(T_IC)) /* if I have multiple insert */ in Insert_write()
1298 if ((num > 1) || !GoodStr(T_ic)) { /* if ic would be more expen. */ in Insert_write()
1304 if (GoodStr(T_im) && GoodStr(T_ei)) { /* if I have insert mode */ in Insert_write()
1309 if (GoodStr(T_ip)) /* have to make num chars insert */ in Insert_write()
1317 if (GoodStr(T_ic)) /* have to make num chars insert */ in Insert_write()
1322 if (GoodStr(T_ip)) /* have to make num chars insert */ in Insert_write()
1338 if (T_CanCEOL && GoodStr(T_ce)) in ClearEOL()
1350 if (GoodStr(T_cl)) in ClearScreen()
1353 else if (GoodStr(T_ho) && GoodStr(T_cd)) { in ClearScreen()
1371 if (GoodStr(T_vb) && adrof(STRvisiblebell)) in SoundBeep()
1373 else if (GoodStr(T_bl)) in SoundBeep()
1383 if (GoodStr(T_cd)) in ClearToBottom()
1385 else if (GoodStr(T_ce)) in ClearToBottom()
1475 T_CanCEOL = GoodStr(T_ce); in GetTermCaps()
1476 T_CanDel = GoodStr(T_dc) || GoodStr(T_DC); in GetTermCaps()
1477 T_CanIns = GoodStr(T_im) || GoodStr(T_ic) || GoodStr(T_IC); in GetTermCaps()
1478 T_CanUP = GoodStr(T_up) || GoodStr(T_UP); in GetTermCaps()
1479 if (GoodStr(T_me) && GoodStr(T_ue)) in GetTermCaps()
1483 if (GoodStr(T_me) && GoodStr(T_se)) in GetTermCaps()