Home | History | Annotate | Download | only in pp

Lines Matching refs:pos

281 bool is_symbol_line(string const & str, string::size_type pos)
283 if (str[pos] != ' ' || str[pos + 1] != '<')
317 size_t pos = 0;
318 while (pos < str.length() && isspace(str[pos]))
319 ++pos;
321 if (pos == str.length() || !isxdigit(str[pos])) {
328 while (pos < str.length() && isxdigit(str[pos]))
329 ++pos;
331 if (pos == str.length() || (!isspace(str[pos]) && str[pos] != ':')) {
338 if (is_symbol_line(str, pos)) {