Home
last modified time | relevance | path

Searched refs:SF_REVERSE (Results 1 – 3 of 3) sorted by relevance

/dflybsd-src/contrib/gdb-7/readline/
H A Disearch.c213 cxt->sflags |= SF_REVERSE;
360 cxt->lastc = (cxt->sflags & SF_REVERSE) ? -1 : -2;
362 cxt->lastc = (cxt->sflags & SF_REVERSE) ? -2 : -1;
439 rl_display_search (cxt->search_string, (cxt->sflags & SF_REVERSE), -1);
444 else if (cxt->sflags & SF_REVERSE)
456 cxt->sflags |= SF_REVERSE;
458 cxt->sflags &= ~SF_REVERSE;
562 while ((cxt->sflags & SF_REVERSE) ? (cxt->sline_index >= 0) : (cxt->sline_index < limit))
584 if ((cxt->sflags & SF_REVERSE) ? (cxt->history_pos < 0) : (cxt->history_pos == cxt->hlen))
601 cxt->sline_index = (cxt->sflags & SF_REVERSE) ? cxt->sline_len - cxt->search_string_index : 0;
[all …]
H A Drlprivate.h56 #define SF_REVERSE 0x01 macro
H A Dsearch.c196 cxt->sflags |= SF_REVERSE; /* not strictly needed */