Home
last modified time | relevance | path

Searched refs:start_column (Results 1 – 6 of 6) sorted by relevance

/glogg/glogg/src/
H A Dselection.h
H A Dselection.cpp
H A Dquickfindpattern.h
/glogg/src/
H A Dselection.h34 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 Dselection.cpp42 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 Dquickfindpattern.h33 QuickFindMatch( int start_column, int length ) in QuickFindMatch() argument
34 { startColumn_ = start_column; length_ = length; } in QuickFindMatch()