Lines Matching defs:end
201 return "end-of-input";
236 sprintf(buffer, "<end of '%s'>", stream_name(token->pos.stream));
429 warning(stream_pos(stream), "no newline at end of file");
431 warning(stream_pos(stream), "backslash-newline at end of file");
462 struct token *end;
464 end = alloc_token(stream);
465 eof_token_entry.pos = end->pos;
466 token_type(end) = TOKEN_STREAMEND;
467 end->pos.newline = 1;
472 end->next = &eof_token_entry;
473 *stream->tokenlist = end;
475 return end;
1020 struct token *begin, *end;
1032 end = tokenize_stream(&stream);
1034 end->next = endtoken;