Lines Matching refs:pos
311 size_t pos = line.find("*/", line_index); in mergeGuards() local
312 if (pos == std::string::npos) { in mergeGuards()
319 current_location.column = pos + 2; in mergeGuards()
324 size_t pos = line.find_first_not_of(" \t", line_index); in mergeGuards() local
325 if (pos == std::string::npos) { in mergeGuards()
330 current_location.column = pos + 1; in mergeGuards()
331 if (line[pos] != '/') { in mergeGuards()
337 if (line.length() <= pos + 1) { in mergeGuards()
344 if (line[pos + 1] == '/') { in mergeGuards()
347 } else if (line[pos + 1] == '*') { in mergeGuards()
354 D("Unexpected output after /: %s\n", line.substr(pos).c_str()); in mergeGuards()