Lines Matching refs:start
115 char *Start; /* start of the current string */
123 static void putKcp(char *start, char *end, boolean force);
438 char *blksptr; /* end of a lexical block start */
441 Start = os; /* remember the start for expmatch */
474 /* start of a comment? */
491 /* start of a comment? */
507 /* start of a string? */
518 /* start of a character string? */
555 /* start of a lexical block */
619 putKcp(char *start, char *end, boolean force)
620 /* start - start of string to write */
627 while (start <= end) {
629 if (*start == ' ' || *start == '\t') {
634 while (*start == ' ' || *start == '\t')
635 start++;
641 if (*start == '\t') {
642 while (*start == '\t')
643 start++;
644 i = tabs(Start, start) - margin / tabsize;
651 if ( (*start == '#' || isidchr(*start))
652 && (start == Start || !isidchr(start[-1]))
654 i = iskw(start);
658 putcp(*start++);
665 putcp (*start++);