Home
last modified time | relevance | path

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

/dports/shells/fish/fish-3.3.1/src/
H A Dparse_execution.cpp1576 if (offset > cached_lineno_offset) { in line_offset_of_character_at_offset()
1578 for (i = cached_lineno_offset; i < offset && str[i] != L'\0'; i++) { in line_offset_of_character_at_offset()
1584 cached_lineno_offset = in line_offset_of_character_at_offset()
1586 } else if (offset < cached_lineno_offset) { in line_offset_of_character_at_offset()
1588 for (size_t i = offset; i < cached_lineno_offset; i++) { in line_offset_of_character_at_offset()
1593 cached_lineno_offset = offset; in line_offset_of_character_at_offset()
H A Dparse_execution.h47 size_t cached_lineno_offset = 0; variable