Lines Matching refs:pos
309 size_t pos = line.find("*/", line_index); in mergeGuards() local
310 if (pos == std::string::npos) { in mergeGuards()
317 current_location.column = pos + 2; in mergeGuards()
322 size_t pos = line.find_first_not_of(" \t", line_index); in mergeGuards() local
323 if (pos == std::string::npos) { in mergeGuards()
328 current_location.column = pos + 1; in mergeGuards()
329 if (line[pos] != '/') { in mergeGuards()
335 if (line.length() <= pos + 1) { in mergeGuards()
342 if (line[pos + 1] == '/') { in mergeGuards()
345 } else if (line[pos + 1] == '*') { in mergeGuards()
352 D("Unexpected output after /: %s\n", line.substr(pos).c_str()); in mergeGuards()