Home
last modified time | relevance | path

Searched refs:redrawLines (Results 1 – 8 of 8) sorted by relevance

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.swt/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/
H A DBullet.java147 int[] redrawLines = new int[count - j]; in removeIndices() local
148 System.arraycopy(linesIndices, j, redrawLines, 0, count - j); in removeIndices()
151 return redrawLines; in removeIndices()
H A DStyledTextRenderer.java61 int[] redrawLines; field in StyledTextRenderer
1322 redrawLines = null; in reset()
1458 styledText.redrawLinesBullet(redrawLines); in setLineBullet()
1459 redrawLines = null; in setLineBullet()
1815 if (redrawLines == null) { in updateBullets()
1816 redrawLines = lines; in updateBullets()
1818 int[] newRedrawBullets = new int[redrawLines.length + lines.length]; in updateBullets()
1819 System.arraycopy(redrawLines, 0, newRedrawBullets, 0, redrawLines.length); in updateBullets()
1820 System.arraycopy(lines, 0, newRedrawBullets, redrawLines.length, lines.length); in updateBullets()
1821 redrawLines = newRedrawBullets; in updateBullets()
H A DStyledText.java6375 redrawLinesBullet(renderer.redrawLines); in handleTextChanged()
6378 renderer.redrawLines = null; in handleTextChanged()
7678 void redrawLinesBullet (int[] redrawLines) { in redrawLinesBullet() argument
7679 if (redrawLines == null) return; in redrawLinesBullet()
7682 for (int redrawLine : redrawLines) { in redrawLinesBullet()
9246 redrawLines(startLine, lineCount, false); in setLineAlignment()
9299 redrawLines(startLine, lineCount, false); in setLineBackground()
9343 redrawLines(startLine, lineCount, oldBottom != newBottom); in setLineBullet()
9458 redrawLines(lineIndex, 1, oldBottom != newBottom); in setLineVerticalIndent()
9507 redrawLines(startLine, lineCount, false); in setLineJustify()
[all …]
/dports/x11-toolkits/swt/swt-4.20/org/eclipse/swt/custom/
H A DBullet.java147 int[] redrawLines = new int[count - j]; in removeIndices() local
148 System.arraycopy(linesIndices, j, redrawLines, 0, count - j); in removeIndices()
151 return redrawLines; in removeIndices()
H A DStyledTextRenderer.java61 int[] redrawLines; field in StyledTextRenderer
1322 redrawLines = null; in reset()
1458 styledText.redrawLinesBullet(redrawLines); in setLineBullet()
1459 redrawLines = null; in setLineBullet()
1820 if (redrawLines == null) { in updateBullets()
1821 redrawLines = lines; in updateBullets()
1823 int[] newRedrawBullets = new int[redrawLines.length + lines.length]; in updateBullets()
1824 System.arraycopy(redrawLines, 0, newRedrawBullets, 0, redrawLines.length); in updateBullets()
1825 System.arraycopy(lines, 0, newRedrawBullets, redrawLines.length, lines.length); in updateBullets()
1826 redrawLines = newRedrawBullets; in updateBullets()
H A DStyledText.java6377 redrawLinesBullet(renderer.redrawLines);
6380 renderer.redrawLines = null;
7680 void redrawLinesBullet (int[] redrawLines) {
7681 if (redrawLines == null) return;
7684 for (int redrawLine : redrawLines) {
9251 redrawLines(startLine, lineCount, false);
9304 redrawLines(startLine, lineCount, false);
9348 redrawLines(startLine, lineCount, oldBottom != newBottom);
9405 redrawLines(startLine, lineCount, oldBottom != newBottom);
9535 redrawLines(startLine, lineCount, false);
[all …]
/dports/graphics/quickqanava/QuickQanava-ab88d77ec62175b9fd499a154ffaf92f7bf23989/src/
H A DqanLineGrid.h148 void redrawLines(int minorLineToDrawCount, int majorLineToDrawCount);
H A DqanLineGrid.cpp205 emit redrawLines(minorL, majorL); in updateGrid() local