Home
last modified time | relevance | path

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

/MusicPlayer2/scintilla/src/
H A DSelection.h86 struct SelectionRange { struct
90 SelectionRange() noexcept : caret(), anchor() { in SelectionRange() function
92 explicit SelectionRange(SelectionPosition single) noexcept : caret(single), anchor(single) { in SelectionRange() argument
94 explicit SelectionRange(Sci::Position single) noexcept : caret(single), anchor(single) { in SelectionRange() argument
96SelectionRange(SelectionPosition caret_, SelectionPosition anchor_) noexcept : caret(caret_), anch… in SelectionRange() argument
98SelectionRange(Sci::Position caret_, Sci::Position anchor_) noexcept : caret(caret_), anchor(ancho… in SelectionRange() argument
105 bool operator ==(const SelectionRange &other) const noexcept { argument
131 bool Trim(SelectionRange range) noexcept; argument