Lines Matching refs:next
11 * What's the right thing to do for -i when write fails? Skip to next?
64 reading the next line. Sed can remember one additional line in a separate
65 buffer (using the h, H, g, G, and x commands), and can read the next line
80 d Delete this line and move on to the next one
98 n Print default output and read next line, replacing current line
99 (If no next line available, quit processing script)
101 N Append next line of input to this line, separated by a newline
103 next line available quit processing script without default output)
117 the next line (for which leading whitespace is not skipped), and also
120 a [text] Append text to output before attempting to read next line
130 next line.
140 a backslash at the end of the line appends the next line.
196 struct sedcmd *next, *prev;
258 struct append *next, *prev;
270 // Grab next line for deferred processing (EOF detection: we get a NULL
336 command = command->next;
341 command = command->next;
348 command = command->next;
366 for (command = (void *)TT.pattern; command; command = command->next)
445 TT.restart = command->next+1;
449 // Can't just grab next line because we could have multiple N and
452 TT.restart = command->next+1;
625 command = command->next;
632 struct append *a = append->next;
663 for (command = (void *)TT.pattern; command; command = command->next)
682 // returns processed copy of string (0 if error), *pstr advances to next
1006 // else request callback and resume with next line
1060 for (al = TT.e; al; al = al->next) parse_pattern(&al->arg, strlen(al->arg));
1062 for (al = TT.f; al; al = al->next)