Searched refs:tabRuns (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalTabbedPaneUI.java125 int firstIndex = tabRuns[ currentRun ];
185 if ( tabIndex != tabRuns[ runCount - 1 ] ) {
228 if ( tabIndex != tabRuns[ runCount - 1 ] ) {
257 if ( tabIndex==firstIndex && tabIndex!=tabRuns[runCount - 1] ) {
259 if (tabPane.getSelectedIndex()==tabRuns[currentRun+1]) {
328 int startIndex = tabRuns[ currentRun + 1 ];
359 int firstIndex = tabRuns[ currentRun ];
476 int firstIndex = tabRuns[ currentRun ];
534 (currentRun > 0 && tabIndex != tabRuns[currentRun - 1])) {
543 if ( tabIndex != tabRuns[ runCoun
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTabbedPaneUI.java124 protected int tabRuns[] = new int[10]; field in class:BasicTabbedPaneUI
184 * tabRuns is not valid and shouldn't be used.
828 // Paint tabRuns of tabs from back to front
830 int start = tabRuns[i];
831 int next = tabRuns[(i == runCount - 1)? 0 : i + 1];
1644 int rectLen = tabRuns.length;
1646 System.arraycopy(tabRuns, 0, newArray, 0, runCount);
1647 tabRuns = newArray;
1652 int first = tabRuns[i];
1666 if (tabRuns[nextRu
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaTabbedPaneCopyFromBasicUI.java116 protected int tabRuns[] = new int[10]; field in class:AquaTabbedPaneCopyFromBasicUI
176 * tabRuns is not valid and shouldn't be used.
788 // Paint tabRuns of tabs from back to front
790 final int start = tabRuns[i];
791 final int next = tabRuns[(i == runCount - 1) ? 0 : i + 1];
1522 final int rectLen = tabRuns.length;
1524 System.arraycopy(tabRuns, 0, newArray, 0, runCount);
1525 tabRuns = newArray;
1530 final int first = tabRuns[i];
1544 if (tabRuns[nextRu
[all...]
H A DAquaTabbedPaneUI.java144 // Paint tabRuns of tabs from back to front
1171 tabRuns[0] = 0;
1189 tabRuns[0] = 0;
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthTabbedPaneUI.java537 // Paint tabRuns of tabs from back to front
539 int start = tabRuns[i];
540 int next = tabRuns[(i == runCount - 1)? 0 : i + 1];
891 int start = tabRuns[i];
892 int next = tabRuns[(i == runCount - 1)? 0 : i + 1];
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsTabbedPaneUI.java172 if (tabRuns[tabRun] == tabIndex) {

Completed in 79 milliseconds