Searched defs:size (Results 576 - 600 of 1126) sorted by relevance

<<21222324252627282930>>

/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/daemon/
H A DSnmpSubRequestHandler.java511 int size= varBind.size();
512 translation[size]= pos;
526 final int max=varBind.size();
616 public NonSyncVector(int size) { argument
617 super(size);
/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/
H A DDnsName.java147 int b = n.size() - end;
148 int e = n.size() - beg;
151 if (size() == n.size()) {
199 public int size() { method in class:DnsName
200 return labels.size();
204 return (size() == 0);
209 for (int i = 0; i < size(); i++) {
220 return ((size() == n.size())
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DLinkedHashMap.java40 * requires time proportional to its size (the number of key-value mappings)
43 * plus the map size.
182 this(Math.max(3*t.size(), 11), 0.75f);
189 public int size() { method in class:LinkedHashMap
559 public int size() {
591 public int size() {
666 public int size() {
691 * a Map whose size is identical to the size of this Set; if not, it
709 if (t.size() !
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DGridBagLayout.java33 * baseline without requiring that the components be of the same size.
44 * determine a component's size.
93 * is larger than the component's requested size
108 * how much to add to the minimum size of the component.
231 * the baseline at the resized size fits within the display area. If
368 * on the size of a grid.
377 * The preferred grid size that can be laid out by the grid bag layout.
596 * stretches beyond its preferred size, if the layout has extra
719 * Determines the preferred size of the <code>parent</code>
726 * @return the preferred size o
1543 calculateBaseline(Component c, GridBagConstraints constraints, Dimension size) argument
[all...]
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.inline.hpp74 inline void os::pd_split_reserved_memory(char *base, size_t size, argument
90 int size = pathconf(path, _PC_NAME_MAX); local
91 return (size < 0 ? MAXPATHLEN : size) + sizeof(dirent) + 1;
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/HierarchicalLayout/src/com/sun/hotspot/igv/hierarchicallayout/
H A DClusterNode.java48 private Dimension size; field in class:ClusterNode
85 return new Point(size.width / 2, 0);
96 return new Point(size.width / 2, size.height);
107 if (subNodes.size() == 0) {
108 size = new Dimension(0, 0);
137 size = new Dimension(maxX - minX, maxY - minY);
154 size.width += 2 * BORDER;
155 size.height += 2 * BORDER;
168 return size;
[all...]
/openjdk7/hotspot/src/share/tools/launcher/
H A Dwildcard.c225 int size; member in struct:FileList_
236 fl->size = 0;
246 for (i = 0; i < fl->size; i++) {
260 for (i = 0; i < fl->size; i++)
282 FileList_ensureCapacity(fl, fl->size+1);
283 fl->files[fl->size++] = file;
292 FileList_ensureCapacity(fl, fl->size+1);
293 fl->files[fl->size++] = filename;
300 int size; local
303 for (i = 0, size
[all...]
/openjdk7/jdk/make/tools/src/build/tools/generatenimbus/
H A DSynthModel.java97 @XmlAttribute private int size; field in class:Typeface
118 name, style, size);
188 @XmlElement private Dimension size; field in class:Canvas
189 public Dimension getSize() { return size; }
198 return layers.size() == 0 || (layers.size() == 1 && layers.get(0).isEmpty());
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaButtonBorder.java86 // Full border size of the component.
212 final Size size = AquaUtilControlSize.getUserSizeFrom(b);
213 final Widget style = getStyleForSize(b, size, width, height);
229 final Size size = AquaUtilControlSize.getUserSizeFrom(b);
230 painter.state.set(size);
232 final Widget style = getStyleForSize(b, size, width, height);
237 if (size == Size.REGULAR) { y += 1; height -= 1; }
238 if (size == Size.MINI) { height -= 1; x += 4; width -= 8; }
244 protected Widget getStyleForSize(final AbstractButton b, final Size size, final int width, final int height) { argument
245 if (size !
[all...]
H A DAquaButtonUI.java91 public void applySizeFor(final JComponent c, final Size size) { argument
104 // See BasicGraphicsUtils.getPreferredButtonSize - it returns null for preferred size,
105 // causing it to use the subcomponent's size, which doesn't allow space for Aqua pushbuttons
H A DAquaComboBoxUI.java341 final int size = listBox.getModel().getSize();
342 listBox.setSelectedIndex(size - 1);
343 listBox.ensureIndexIsVisible(size - 1);
506 public void applySizeFor(final JComponent c, final Size size) { argument
511 arrowButton.setBorder(aquaBorder.deriveBorderForSize(size));
521 final Dimension size;
528 size = getDisplaySize();
529 size.width += insets.left + insets.right;
530 size.width += buttonInsets.left + buttonInsets.right;
531 size
[all...]
H A DAquaSliderUI.java125 public void applySizeFor(final JComponent c, final Size size) { argument
126 thumbPainter.state.set(size);
127 trackPainter.state.set(size);
237 final Size size = AquaUtilControlSize.getUserSizeFrom(slider);
239 if (size == Size.REGULAR) {
243 if (size == Size.SMALL) {
247 if (size == Size.MINI) {
294 // Basic's preferred size doesn't allow for our focus ring, throwing off things like SwingSet2
H A DAquaTabbedPaneTabState.java122 // we don't fit, so we need to figure the space based on the size of the popup
264 private void centerHorizontalRun(final Rectangle[] rects, final Dimension size, final boolean isRightToLeft) { argument
270 int x = size.width / 2 - totalLength / 2;
286 private void centerVerticalRun(final Rectangle[] rects, final Dimension size) { argument
292 int y = size.height / 2 - totalLength / 2;
308 private void stretchScrollingHorizontalRun(final Rectangle[] rects, final Dimension size, final boolean isRightToLeft) { argument
318 int slack = size.width - totalRunLength - pane.tabAreaInsets.left - pane.tabAreaInsets.right;
362 rightScrollTabRect.x = size.width - pane.tabAreaInsets.right - rightScrollTabRect.width;
370 leftScrollTabRect.x = size.width - pane.tabAreaInsets.right - rightScrollTabRect.width;
390 private void stretchScrollingVerticalRun(final Rectangle[] rects, final Dimension size) { argument
[all...]
/openjdk7/jdk/src/macosx/classes/sun/font/
H A DCFontManager.java205 File[] files = new File[tmpFontFiles.size()];
360 String family, int style, int size)
366 return new FontUIResource(mappedName, style, size);
359 getFontConfigFUIR( String family, int style, int size) argument
/openjdk7/jdk/src/macosx/native/com/sun/media/sound/
H A DPLATFORM_API_MacOSX_Utils.cpp75 UInt32 size; local
76 err = GetAudioObjectPropertySize(kAudioObjectSystemObject, kAudioObjectPropertyScopeGlobal, kAudioHardwarePropertyDevices, &size);
78 devices = (AudioDeviceID *)malloc(size);
79 err = GetAudioObjectProperty(kAudioObjectSystemObject, kAudioObjectPropertyScopeGlobal, kAudioHardwarePropertyDevices, &size, devices);
81 count = size/sizeof(AudioDeviceID);
191 UInt32 size, i; local
194 err = GetAudioObjectPropertySize(deviceID, scope, kAudioDevicePropertyStreamConfiguration, &size);
198 AudioBufferList *pBufferList = (AudioBufferList *)malloc(size);
199 memset(pBufferList, 0, size);
200 err = GetAudioObjectProperty(deviceID, scope, kAudioDevicePropertyStreamConfiguration, &size, pBufferLis
231 GetAudioObjectPropertySize(AudioObjectID object, AudioObjectPropertyScope scope, AudioObjectPropertySelector prop, UInt32 *size) argument
241 GetAudioObjectProperty(AudioObjectID object, AudioObjectPropertyScope scope, AudioObjectPropertySelector prop, UInt32 *size, void *data) argument
251 GetAudioObjectProperty(AudioObjectID object, AudioObjectPropertyScope scope, AudioObjectPropertySelector prop, UInt32 size, void *data, int checkSize) argument
265 SetAudioObjectProperty(AudioObjectID object, AudioObjectPropertyScope scope, AudioObjectPropertySelector prop, UInt32 size, void *data) argument
[all...]
/openjdk7/jdk/src/share/back/
H A DcommonRef.c58 * is handled with one hash table that will re-size itself as the number
62 /* Initial hash table size (must be power of 2) */
66 /* Maximum hash table size (must be power of 2) */
291 initializeObjectsByID(int size) argument
294 if ( size > HASH_MAX_SIZE ) size = HASH_MAX_SIZE;
295 gdata->objectsByIDsize = size;
297 gdata->objectsByID = (RefNode**)jvmtiAllocate((int)sizeof(RefNode*)*size);
298 (void)memset(gdata->objectsByID, 0, (int)sizeof(RefNode*)*size);
H A DinStream.c66 readBytes(PacketInputStream *stream, void *dest, int size) argument
72 if (size > stream->left) {
78 (void)memcpy(dest, stream->current, size);
80 stream->current += size;
81 stream->left -= size;
87 inStream_skipBytes(PacketInputStream *stream, jint size) { argument
88 return readBytes(stream, NULL, size);
H A DstepControl.c788 stepControl_beginStep(JNIEnv *env, jthread thread, jint size, jint depth, argument
795 LOG_STEP(("stepControl_beginStep: thread=%p,size=%d,depth=%d",
796 thread, size, depth));
816 step->granularity = size;
/openjdk7/jdk/src/share/bin/
H A Dparse_manifest.c48 * size_out: Returns the size of the inflated file.
201 * has a maximum possible size of 64k.
289 * size of the header, because if bytes is less than CENHDR, the
290 * actual size of the header can't be determined. The addition of
537 JLI_JarUnpackFile(const char *jarfile, const char *filename, int *size) { argument
550 data = inflate_file(fd, &entry, size);
H A Dwildcard.c225 int size; member in struct:FileList_
236 fl->size = 0;
248 for (i = 0; i < fl->size; i++)
270 FileList_ensureCapacity(fl, fl->size+1);
271 fl->files[fl->size++] = file;
280 FileList_ensureCapacity(fl, fl->size+1);
281 fl->files[fl->size++] = filename;
288 int size; local
291 for (i = 0, size = 1; i < fl->size;
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/common/
H A DPaletteBuilder.java76 * of colors in the given image exceeds maximum palette size).
101 * maximum palette size closest colors would be merged.
185 protected PaletteBuilder(RenderedImage src, int size) { argument
193 this.requiredSize = size;
299 int size = currSize;
301 size ++; // we need place for transparent color;
304 byte[] red = new byte[size];
305 byte[] green = new byte[size];
306 byte[] blue = new byte[size];
309 palette = new ColorNode[size];
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Drelocator.hpp95 void set_compressed_line_number_table_size(int size) { _compressed_line_number_table_size = size; } argument
H A Dsignature.cpp71 int size = -1; local
74 _index++; size = T_BYTE_size ; break;
76 _index++; size = T_CHAR_size ; break;
78 _index++; size = T_DOUBLE_size ; break;
80 _index++; size = T_FLOAT_size ; break;
82 _index++; size = T_INT_size ; break;
84 _index++; size = T_LONG_size ; break;
86 _index++; size = T_SHORT_size ; break;
88 _index++; size = T_BOOLEAN_size; break;
90 _index++; size
[all...]
H A Dvirtualspace.hpp39 // The base and size prior to any alignment done by this class; used only on
49 ReservedSpace(char* base, size_t size, size_t alignment, bool special,
53 const size_t size, bool special);
54 void initialize(size_t size, size_t alignment, bool large,
62 // address and size when releasing.
72 // The total size of the result region is size prefix_size + suffix_size.
89 void protect_noaccess_prefix(const size_t size);
93 ReservedSpace(size_t size);
94 ReservedSpace(size_t size, size_
105 size_t size() const { return _size; } function in class:VALUE_OBJ_CLASS_SPEC
[all...]
/openjdk7/hotspot/src/share/vm/services/
H A DmemBaseline.cpp121 size_t size = malloc_ptr->size(); local
125 _arena_data[index].inc(size);
126 used_arena_size += size;
128 _total_malloced += size;
129 _malloc_data[index].inc(size);
136 size = next_malloc_ptr->size();
137 _arena_data[index].inc(size);
138 used_arena_size += size;
[all...]

Completed in 74 milliseconds

<<21222324252627282930>>