Lines Matching defs:input
30 " command mode and input mode. In command mode characters on the"
31 " standard input are interpreted as commands, and in input mode they"
149 char* input;
212 ed.input = 0;
287 if (!ed.input) {
288 if (!(ed.input = sfgetr(sfstdin, '\n', 1))) {
292 if ((n = sfvalue(sfstdin) - 2) >= 0 && ed.input[n] == '\r')
293 ed.input[n--] = 0;
294 ed.spbeg = ed.input;
295 ed.spend = (n >= 0 && ed.input[n] == '\\') ? (ed.input + n) : (char*)0;
297 if (!(ed.lastc = *ed.input++)) {
298 ed.input = 0;
330 ed.input = s + (ed.input - ed.spbeg);
335 input(int n)
343 else if (ed.input)
344 return ed.input += n;
665 s = input(0);
669 input(2);
680 input(ed.re.re_npat);
686 input(1);
761 input(-1);
1401 if (n = regsubcomp(&ed.re, input(0), submap, n, 0))
1406 if ((n = *input(ed.re.re_npat)) && n != '\r' && n != '\n')