Lines Matching refs:rest
335 char c, *rest, *line_start; in z80_start_line_hook() local
343 rest = input_line_pointer + 1; in z80_start_line_hook()
345 if (*rest == ':') in z80_start_line_hook()
346 ++rest; in z80_start_line_hook()
347 if (*rest == ' ' || *rest == '\t') in z80_start_line_hook()
348 ++rest; in z80_start_line_hook()
349 if (*rest == '.') in z80_start_line_hook()
350 ++rest; in z80_start_line_hook()
351 if (strncasecmp (rest, "EQU", 3) == 0) in z80_start_line_hook()
353 else if (strncasecmp (rest, "DEFL", 4) == 0) in z80_start_line_hook()
357 if (len && (!ISALPHA(rest[len]) ) ) in z80_start_line_hook()
365 input_line_pointer = rest + len - 1; in z80_start_line_hook()