Home
last modified time | relevance | path

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

/bionic/tools/versioner/src/
DPreprocessor.cpp287 FileLocation current_location = current->first.end; in mergeGuards() local
290 auto nextLine = [&current_location]() { in mergeGuards()
291 ++current_location.line; in mergeGuards()
292 current_location.column = 1; in mergeGuards()
295 auto nextCol = [&file_lines, &current_location, &nextLine]() { in mergeGuards()
296 if (current_location.column == file_lines[current_location.line - 1].length()) { in mergeGuards()
299 ++current_location.column; in mergeGuards()
306 while (current_location < end_location) { in mergeGuards()
307 const std::string& line = file_lines[current_location.line - 1]; in mergeGuards()
308 size_t line_index = current_location.column - 1; in mergeGuards()
[all …]