Lines Matching refs:length
54 int mapPullToFollowLength( int length );
142 int length = last_col - first_col + 1; in addChunk() local
143 if ( length > 0 ) { in addChunk()
144 list << Chunk ( first_col, length, fore, back ); in addChunk()
175 QString cutline = line.mid( chunk.start(), chunk.length() ); in draw()
176 const int chunk_width = cutline.length() * fontWidth; in draw()
681 if ( followElasticHook_.length() == 0 && !followElasticHook_.isHooked() ) { in wheelEvent()
802 int pullToFollowHeight = mapPullToFollowLength( followElasticHook_.length() ) in paintEvent()
1179 const int length = this_line.length(); in convertCoordToFilePos() local
1181 if ( column >= length ) in convertCoordToFilePos()
1182 column = length - 1; in convertCoordToFilePos()
1253 int length = logData->getLineLength( line ); in jumpToEndOfLine() local
1254 if ( length > max_length ) in jumpToEndOfLine()
1255 max_length = length; in jumpToEndOfLine()
1269 int length = logData->getLineLength( i ); in jumpToRightOfScreen() local
1270 if ( length > max_length ) in jumpToRightOfScreen()
1271 max_length = length; in jumpToRightOfScreen()
1327 for ( ; currentPos < line.length() - 1; currentPos++ ) in selectWordAtPosition()
1568 int end = start + match.length(); in drawTextArea()
1574 column = qMin( start + match.length() - 1, nbCols ); in drawTextArea()
1579 if ( column <= cutLine.length() - 1 ) in drawTextArea()
1580 chunkList << LineChunk( column, cutLine.length() - 1, LineChunk::Normal ); in drawTextArea()
1724 int mapPullToFollowLength( int length ) in mapPullToFollowLength() argument
1726 return length / 14; in mapPullToFollowLength()