Lines Matching refs:current
22 LineAndColumn current{0, 0, 0};
25 previous = current;
26 current.offset += std::distance(from, to);
29 current.line += 1;
30 current.column = 0;
32 current.column += 1;
39 return {CurrentSourceFile::Get(), previous, current};
73 for (const Item* current = this; current->prev_; current = current->prev_) {
74 children.push_back(current->child_);
190 // Worklist for items at the current position.
253 // When we complete an item that started at the current position
306 InputPosition current = *pos;
307 for (; *s != 0; ++s, ++current) {
308 if (*s != *current) return false;
310 *pos = current;