Home
last modified time | relevance | path

Searched defs:ScrollContext (Results 1 – 1 of 1) sorted by relevance

/openbsd-src/gnu/llvm/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp994 struct ScrollContext { struct
995 int start;
996 int end;
998 ScrollContext(int line) : start(line), end(line) {} in ScrollContext() function
999 ScrollContext(int _start, int _end) : start(_start), end(_end) {} in ScrollContext() function
1001 void Offset(int offset) { in Offset()