Searched refs:slack (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaFocus.java72 public static Icon createFocusedIcon(final Icon tmpIcon, final Component c, final int slack) { argument
73 return new FocusedIcon(tmpIcon, slack);
80 final int slack;
82 public FocusedIcon(final Icon icon, final int slack) {
84 this.slack = slack;
89 return icon.getIconHeight() + slack + slack;
94 return icon.getIconWidth() + slack + slack;
114 final int slack; field in class:AquaFocus.FocusedIcon
116 FocusedIcon(final Icon icon, final int slack) argument
[all...]
H A DAquaTabbedPaneTabState.java318 int slack = size.width - totalRunLength - pane.tabAreaInsets.left - pane.tabAreaInsets.right;
320 slack -= FIXED_SCROLL_TAB_LENGTH;
323 slack -= FIXED_SCROLL_TAB_LENGTH;
326 final int minSlack = (int)((float)(slack) / (float)(totalTabs));
327 int extraSlack = slack - (minSlack * totalTabs);
400 int slack = size.height - totalRunLength - pane.tabAreaInsets.top - pane.tabAreaInsets.bottom;
402 slack -= FIXED_SCROLL_TAB_LENGTH;
405 slack -= FIXED_SCROLL_TAB_LENGTH;
408 final int minSlack = (int)((float)(slack) / (float)(totalTabs));
409 int extraSlack = slack
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A Dallocation.hpp250 slack = 40, // [RGV] Not sure if this is right, but make it enumerator in enum:Chunk::__anon251
253 slack = 20, // suspected sizeof(Chunk) + internal malloc headers
256 init_size = 1*K - slack, // Size of first chunk
257 medium_size= 10*K - slack, // Size of medium-sized chunk
258 size = 32*K - slack, // Default size of an Arena chunk (following the first)

Completed in 38 milliseconds