Searched refs:start_column (Results 1 – 6 of 6) sorted by relevance
/glogg/glogg/src/ |
H A D | selection.h |
|
H A D | selection.cpp |
|
H A D | quickfindpattern.h |
|
/glogg/src/ |
H A D | selection.h | 34 Portion( int line, int start_column, int end_column ) in Portion() argument 35 { line_ = line; startColumn_ = start_column; endColumn_ = end_column; } in Portion() 64 void selectPortion( int line, int start_column, int end_column ); 91 int* start_column, int* end_column ) const;
|
H A D | selection.cpp | 42 void Selection::selectPortion( int line, int start_column, int end_column ) in selectPortion() argument 49 selectedPartial_.startColumn = qMin ( start_column, end_column ); in selectPortion() 50 selectedPartial_.endColumn = qMax ( start_column, end_column ); in selectPortion() 96 bool Selection::getPortionForLine( int line, int* start_column, int* end_column ) const in getPortionForLine() argument 99 *start_column = selectedPartial_.startColumn; in getPortionForLine()
|
H A D | quickfindpattern.h | 33 QuickFindMatch( int start_column, int length ) in QuickFindMatch() argument 34 { startColumn_ = start_column; length_ = length; } in QuickFindMatch()
|