Searched defs:targetInsets (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaTabbedPaneUI.java578 protected static void rotateInsets(final Insets topInsets, final Insets targetInsets, final int targetPlacement) { argument
581 targetInsets.top = topInsets.left;
582 targetInsets.left = topInsets.top;
583 targetInsets.bottom = topInsets.right;
584 targetInsets.right = topInsets.bottom;
587 targetInsets.top = topInsets.bottom;
588 targetInsets.left = topInsets.left;
589 targetInsets.bottom = topInsets.top;
590 targetInsets.right = topInsets.right;
593 targetInsets
[all...]
H A DAquaTabbedPaneCopyFromBasicUI.java1973 protected static void rotateInsets(final Insets topInsets, final Insets targetInsets, final int targetPlacement) { argument
1977 targetInsets.top = topInsets.left;
1978 targetInsets.left = topInsets.top;
1979 targetInsets.bottom = topInsets.right;
1980 targetInsets.right = topInsets.bottom;
1983 targetInsets.top = topInsets.bottom;
1984 targetInsets.left = topInsets.left;
1985 targetInsets.bottom = topInsets.top;
1986 targetInsets.right = topInsets.right;
1989 targetInsets
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTabbedPaneUI.java2127 protected static void rotateInsets(Insets topInsets, Insets targetInsets, int targetPlacement) { argument
2131 targetInsets.top = topInsets.left;
2132 targetInsets.left = topInsets.top;
2133 targetInsets.bottom = topInsets.right;
2134 targetInsets.right = topInsets.bottom;
2137 targetInsets.top = topInsets.bottom;
2138 targetInsets.left = topInsets.left;
2139 targetInsets.bottom = topInsets.top;
2140 targetInsets.right = topInsets.right;
2143 targetInsets
[all...]

Completed in 48 milliseconds