Home | History | Annotate | Download | only in sanitizer_common

Lines Matching defs:line

94   const char *line = str;
95 while (line) {
96 while (line[0] == ' ' || line[0] == '\t')
97 line++;
98 const char *end = internal_strchr(line, '\n');
100 end = line + internal_strlen(line);
101 if (line != end && line[0] != '#') {
103 while (line != end2 && (end2[-1] == ' ' || end2[-1] == '\t'))
107 const char *next_char = StripPrefix(line, kTypeStrings[type]);
109 line = ++next_char;
119 s.templ = (char*)InternalAlloc(end2 - line + 1);
120 internal_memcpy(s.templ, line, end2 - line);
121 s.templ[end2 - line] = 0;
128 line = end + 1;