Home
last modified time | relevance | path

Searched refs:current_location (Results 1 – 1 of 1) sorted by relevance

/bionic/tools/versioner/src/
DPreprocessor.cpp284 FileLocation current_location = current->first.end; in mergeGuards() local
287 auto nextLine = [&current_location]() { in mergeGuards()
288 ++current_location.line; in mergeGuards()
289 current_location.column = 1; in mergeGuards()
292 auto nextCol = [&file_lines, &current_location, &nextLine]() { in mergeGuards()
293 if (current_location.column == file_lines[current_location.line - 1].length()) { in mergeGuards()
296 ++current_location.column; in mergeGuards()
303 while (current_location < end_location) { in mergeGuards()
304 const std::string& line = file_lines[current_location.line - 1]; in mergeGuards()
305 size_t line_index = current_location.column - 1; in mergeGuards()
[all …]