Searched defs:gap (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DInternalDialog.java77 private int gap = 10; field in class:InternalDialog.MastheadIcon
106 g.drawString(title, lWidth + gap, height/2 + textHeight/2);
118 return (leftIcon.getIconWidth() + gap + textWidth +
119 gap + rightIcon.getIconWidth());
/openjdk7/jdk/src/share/classes/org/ietf/jgss/
H A DMessageProp.java45 * of sequence tokens, gap tokens or duplicate tokens.<p>
207 * @param gap true if one or more predecessor tokens have not yet been
214 boolean old, boolean unseq, boolean gap,
219 this.gapToken = gap;
213 setSupplementaryStates(boolean duplicate, boolean old, boolean unseq, boolean gap, int minorStatus, String minorString) argument
/openjdk7/jdk/src/share/classes/javax/swing/colorchooser/
H A DDefaultSwatchChooserPanel.java275 protected Dimension gap; field in class:SwatchPanel
362 int y = row * (swatchSize.height + gap.height);
368 x = (numSwatches.width - column - 1) * (swatchSize.width + gap.width);
370 x = column * (swatchSize.width + gap.width);
395 int x = numSwatches.width * (swatchSize.width + gap.width) - 1;
396 int y = numSwatches.height * (swatchSize.height + gap.height) - 1;
412 selCol = numSwatches.width - x / (swatchSize.width + gap.width) - 1;
414 selCol = x / (swatchSize.width + gap.width);
416 selRow = y / (swatchSize.height + gap.height);
423 column = numSwatches.width - x / (swatchSize.width + gap
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthMenuItemLayoutHelper.java109 Rectangle viewRect, int gap, String accDelimiter,
119 reset(mi, checkIcon, arrowIcon, viewRect, gap, accDelimiter,
230 // than the widest icon + the widest text + gap,
107 SynthMenuItemLayoutHelper(SynthContext context, SynthContext accContext, JMenuItem mi, Icon checkIcon, Icon arrowIcon, Rectangle viewRect, int gap, String accDelimiter, boolean isLeftToRight, boolean useCheckAndArrow, String propertyPrefix) argument
/openjdk7/hotspot/src/share/vm/oops/
H A DconstMethodKlass.cpp264 int gap = (intptr_t) uncompressed_table_start - (intptr_t) compressed_table_end; local
266 guarantee(gap >= 0 && gap < max_gap, "invalid method layout");
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsInternalFrameTitlePane.java151 int gap = 2;
156 titleX = systemLabel.getX() + systemLabel.getWidth() + gap;
160 titleW = lastIconBounds.x - titleX - gap;
166 int minTitleX = lastIconBounds.x + lastIconBounds.width + gap;
170 int availableWidth = systemLabel.getX() - gap - minTitleX;
172 titleX = systemLabel.getX() - gap - titleW;
396 int x, int y, int w, int h, int gap,
395 layoutButton(JComponent button, Part part, int x, int y, int w, int h, int gap, boolean leftToRight) argument
/openjdk7/jdk/src/share/classes/sun/swing/
H A DMenuItemLayoutHelper.java81 private int gap; field in class:MenuItemLayoutHelper
104 Rectangle viewRect, int gap, String accDelimiter,
107 reset(mi, checkIcon, arrowIcon, viewRect, gap, accDelimiter,
112 Rectangle viewRect, int gap, String accDelimiter,
136 this.gap = gap;
223 int afterCheckIconGap = gap;
236 return gap; // There is no any check icon
241 int checkIconOffset = gap;
295 labelSize.width = iconSize.width + textSize.width + gap;
103 MenuItemLayoutHelper(JMenuItem mi, Icon checkIcon, Icon arrowIcon, Rectangle viewRect, int gap, String accDelimiter, boolean isLeftToRight, Font font, Font accFont, boolean useCheckAndArrow, String propertyPrefix) argument
111 reset(JMenuItem mi, Icon checkIcon, Icon arrowIcon, Rectangle viewRect, int gap, String accDelimiter, boolean isLeftToRight, Font font, Font accFont, boolean useCheckAndArrow, String propertyPrefix) argument
725 calcXPositionsLTR(int startXPos, int leadingGap, int gap, Rectangle... rects) argument
736 calcXPositionsRTL(int startXPos, int leadingGap, int gap, Rectangle... rects) argument
849 addMaxWidth(RectSize size, int gap, Dimension result) argument
855 addWidth(int width, int gap, Dimension result) argument
1065 setGap(int gap) argument
[all...]
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp1240 // It is also useful to get around the heap-stack-gap problem on SuSE
1244 // is no gap between the last two virtual memory regions.
3511 const size_t gap = 0x000000; local
3557 size_t top_overlap = requested_addr + (bytes + gap) - base[i];
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp1050 // It is also useful to get around the heap-stack-gap problem on SuSE
1054 // is no gap between the last two virtual memory regions.
3432 const size_t gap = 0x000000; local
3478 size_t top_overlap = requested_addr + (bytes + gap) - base[i];
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp3187 // Solaris adds a gap between mmap'ed regions. The size of the gap
3188 // is dependent on the requested size and the MMU. Our initial gap
3192 size_t gap = 0x400000; local
3240 // check that the gap value is right
3243 if (gap != actual_gap) {
3244 // adjust the gap value and retry the last 2 allocations
3245 assert(i > 0, "gap adjustment code problem");
3246 have_adjusted_gap = true; // adjust the gap only once, just in case
3247 gap
[all...]

Completed in 106 milliseconds