Searched defs:size (Results 701 - 725 of 1126) sorted by relevance

<<21222324252627282930>>

/openjdk7/jdk/src/solaris/classes/sun/awt/
H A DX11FontManager.java273 int len = nativeNames.size();
815 protected FontUIResource getFontConfigFUIR(String family, int style, int size) { argument
820 return new FontUIResource(family, style, size);
831 new FontUIResource(font2D.getFamilyName(null), style, size);
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DFileDispatcherImpl.java79 int truncate(FileDescriptor fd, long size) throws IOException { argument
80 return truncate0(fd, size);
83 long size(FileDescriptor fd) throws IOException { method in class:FileDispatcherImpl
87 int lock(FileDescriptor fd, boolean blocking, long pos, long size, argument
90 return lock0(fd, blocking, pos, size, shared);
93 void release(FileDescriptor fd, long pos, long size) throws IOException { argument
94 release0(fd, pos, size);
134 static native int truncate0(FileDescriptor fd, long size) argument
140 long size, boolean shared) throws IOException;
142 static native void release0(FileDescriptor fd, long pos, long size) argument
139 lock0(FileDescriptor fd, boolean blocking, long pos, long size, boolean shared) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixFileAttributes.java154 public long size() { method in class:UnixFileAttributes
285 public long size() { method in class:UnixFileAttributes.UnixAsBasicFileAttributes
286 return attrs.size();
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DConstantPoolGen.java79 protected int size = 1024; // Inital size, sufficient in most cases field in class:ConstantPoolGen
80 protected Constant[] constants = new Constant[size];
99 if(cs.length > size) {
100 size = cs.length;
101 constants = new Constant[size];
173 if(index + 3 >= size) {
176 size *= 2;
177 constants = new Constant[size];
684 * @return current size o
[all...]
H A DInstructionFactory.java110 for(int i=0; i < arg_types.length; i++) // Count size of arguments
367 * @param size size of operand, either 1 (int, e.g.) or 2 (double)
369 public static StackInstruction createPop(int size) { argument
370 return (size == 2)? (StackInstruction)POP2 :
375 * @param size size of operand, either 1 (int, e.g.) or 2 (double)
377 public static StackInstruction createDup(int size) { argument
378 return (size == 2)? (StackInstruction)DUP2 :
383 * @param size siz
385 createDup_2(int size) argument
393 createDup_1(int size) argument
[all...]
H A DInstructionList.java210 byte_positions = new int[count]; // Trim to proper size
758 InstructionHandle[] targeted = new InstructionHandle[target_vec.size()];
963 byte_positions = new int[count]; // Trim to proper size
1006 Instruction[] result = new Instruction[instructions.size()];
1184 public int size() { return length; } method in class:InstructionList
/openjdk7/jaxp/src/com/sun/org/apache/regexp/internal/
H A DRECompiler.java96 // Start off with a generous, yet reasonable, initial size
103 * If n more can't fit, then the size is doubled until it can.
114 // Double the size of the program array until n more will fit
1351 int size = 16; // Capacity of current range arrays field in class:RECompiler.RERange
1352 int[] minRange = new int[size]; // Range minima
1353 int[] maxRange = new int[size]; // Range maxima
1426 if (num >= size)
1428 size *= 2;
1429 int[] newMin = new int[size];
1430 int[] newMax = new int[size];
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXSModelImpl.java150 for (j = gs == null ? -1 : gs.size() - 1; j >= 0; j--) {
631 // do this in two passes to avoid inaccurate array size
721 public int size() { method in class:XSModelImpl
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/opti/
H A DSchemaDOMParser.java242 if (fSawAnnotation.size() > 0) {
574 /** Returns the size of the stack. */
575 public int size() { method in class:SchemaDOMParser.BooleanStack
600 private void ensureCapacity(int size) { argument
604 else if (fData.length <= size) {
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DContextStack.java278 * Get the current size.
280 public int size () { method in class:ContextStack
/openjdk7/hotspot/agent/src/os/bsd/
H A Dlibproc_impl.c400 // read "size" bytes info "buf" from address "addr"
402 void *buf, size_t size) {
403 return ph->ops->p_pread(ph, (uintptr_t) addr, buf, size)? PS_OK: PS_ERR;
406 // write "size" bytes of data to debuggee at address "addr"
408 const void *buf, size_t size) {
409 return ph->ops->p_pwrite(ph, (uintptr_t)addr, buf, size)? PS_OK: PS_ERR;
401 ps_pread(struct ps_prochandle *ph, psaddr_t addr, void *buf, size_t size) argument
407 ps_pwrite(struct ps_prochandle *ph, psaddr_t addr, const void *buf, size_t size) argument
/openjdk7/hotspot/agent/src/os/linux/
H A Dlibproc_impl.c403 // read "size" bytes info "buf" from address "addr"
405 void *buf, size_t size) {
406 return ph->ops->p_pread(ph, (uintptr_t) addr, buf, size)? PS_OK: PS_ERR;
409 // write "size" bytes of data to debuggee at address "addr"
411 const void *buf, size_t size) {
412 return ph->ops->p_pwrite(ph, (uintptr_t)addr, buf, size)? PS_OK: PS_ERR;
404 ps_pdread(struct ps_prochandle *ph, psaddr_t addr, void *buf, size_t size) argument
410 ps_pdwrite(struct ps_prochandle *ph, psaddr_t addr, const void *buf, size_t size) argument
H A Dsymtab.c46 uintptr_t size; member in struct:elf_symbol
278 build_id_to_debug_filename (size_t size, unsigned char *data) argument
283 + 2 * size + (sizeof ".debug" - 1) + 1);
285 if (size > 0)
287 size--;
290 if (size > 0)
292 while (size-- > 0)
379 size_t size; local
406 size = scn_cache[shdr->sh_link].c_shdr->sh_size;
407 symtab->strs = (char *)malloc(size);
[all...]
/openjdk7/jdk/src/share/classes/javax/sql/rowset/
H A DRowSetMetaDataImpl.java277 * @param size the maximum size of the column in chars; must be
280 * the given column number is out of bounds, or <i>size</i> is
283 public void setColumnDisplaySize(int columnIndex, int size) throws SQLException { argument
284 if (size < 0) {
285 throw new SQLException("Invalid column display size. Cannot be less " +
289 colInfo[columnIndex].columnDisplaySize = size;
393 throw new SQLException("Invalid scale size. Cannot be less " +
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DGapContent.java64 * Creates a new GapContent object. Initial size defaults to 10.
72 * size specified. The initial size will not be allowed
76 * @param initialLength the initial size
233 if (unusedMarks > Math.max(5, (marks.size() / 10))) {
243 if (sortIndex < marks.size()
350 int n = marks.size();
371 * without changing the size of the gap. This
389 int n = marks.size();
400 int n = marks.size();
587 MarkVector(int size) argument
610 public int size() { method in class:GapContent.MarkVector
[all...]
/openjdk7/jdk/src/share/classes/sun/font/
H A DFileFontStrike.java194 * The size range of 0->5 and 37->INF for segmenting is arbitrary
243 /* Check its a simple scale of a pt size in the range
262 ("Strike for " + fileFont + " at size = " + intPtSize +
274 * The pixel size of 48.0 can be thought of as
329 int size,
337 int size = intPtSize;
339 (family, style, size, glyphCode,
388 " at size = " + intPtSize +
327 _getGlyphImageFromWindows(String family, int style, int size, int glyphCode, boolean fracMetrics) argument
H A DGlyphLayout.java257 * Whether a grey (AA) strike is needed is size dependent if
341 } else if (cache.size() >= 512) {
521 if (_ercount == _erecords.size()) {
543 public void init(int size) { argument
547 if (_glyphs == null || _glyphs.length < size) {
548 if (size < 20) {
549 size = 20;
551 _glyphs = new int[size];
552 _positions = new float[size * 2 + 2];
553 _indices = new int[size];
[all...]
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DArc2D.java136 * size (0, 0), angular extents (start = 0, extent = 0).
145 * size (0, 0), angular extents (start = 0, extent = 0), and
158 * size, angular extents, and closure type.
187 * size, angular extents, and closure type.
429 * size (0, 0), angular extents (start = 0, extent = 0).
438 * size (0, 0), angular extents (start = 0, extent = 0), and
451 * size, angular extents, and closure type.
480 * size, angular extents, and closure type.
771 * Sets the location, size, angular extents, and closure type of
790 * Sets the location, size, angula
804 setArc(Point2D loc, Dimension2D size, double angSt, double angExt, int closure) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DIndexColorModel.java91 * <em>n</em> is based on the pixel size specified in the constructor.
95 * pixel size.
98 * Index values greater than or equal to the map size, but less than
156 * @param size the size of the color component arrays
162 * @throws IllegalArgumentException if <code>size</code> is less
165 public IndexColorModel(int bits, int size, argument
175 setRGBs(size, r, g, b, null);
195 * @param size the size o
205 IndexColorModel(int bits, int size, byte r[], byte g[], byte b[], int trans) argument
244 IndexColorModel(int bits, int size, byte r[], byte g[], byte b[], byte a[]) argument
284 IndexColorModel(int bits, int size, byte cmap[], int start, boolean hasalpha) argument
321 IndexColorModel(int bits, int size, byte cmap[], int start, boolean hasalpha, int trans) argument
405 IndexColorModel(int bits, int size, int cmap[], int start, boolean hasalpha, int trans, int transferType) argument
472 IndexColorModel(int bits, int size, int cmap[], int start, int transferType, BigInteger validBits) argument
507 setRGBs(int size, byte r[], byte g[], byte b[], byte a[]) argument
544 setRGBs(int size, int cmap[], int start, boolean hasalpha) argument
584 calcRealMapSize(int bits, int size) argument
[all...]
/openjdk7/jdk/src/share/classes/java/security/
H A DKeyStore.java1034 public final int size() method in class:KeyStore
/openjdk7/jdk/src/share/classes/java/util/
H A DArrayList.java32 * this class provides methods to manipulate the size of the array that is
36 * <p>The <tt>size</tt>, <tt>isEmpty</tt>, <tt>get</tt>, <tt>set</tt>,
44 * the size of the array used to store the elements in the list. It is always
45 * at least as large as the list size. As elements are added to an ArrayList,
126 * The size of the ArrayList (the number of elements it contains).
130 private int size; field in class:ArrayList
165 size = elementData.length;
168 elementData = Arrays.copyOf(elementData, size, Object[].class);
173 * list's current size. An application can use this operation to minimize
178 if (size < elementDat
258 public int size() { method in class:ArrayList
958 subListRangeCheck(int fromIndex, int toIndex, int size) argument
972 int size; field in class:ArrayList.SubList
997 public int size() { method in class:ArrayList.SubList
[all...]
H A DHashtable.java140 * The table is rehashed when its size exceeds this threshold. (The
296 this(Math.max(2*t.size(), 11), 0.75f);
305 public synchronized int size() { method in class:Hashtable
445 * The maximum size of array to allocate.
448 * OutOfMemoryError: Requested array size exceeds VM limit
638 int max = size() - 1;
713 public int size() { method in class:Hashtable.KeySet
799 public int size() { method in class:Hashtable.EntrySet
834 public int size() { method in class:Hashtable.ValueCollection
863 if (t.size() !
[all...]
H A DIdentityHashMap.java65 * semantics): <i>expected maximum size</i>. This parameter is the maximum
69 * maximum size and the number of buckets is unspecified.
71 * <p>If the size of the map (the number of key-value mappings) sufficiently
72 * exceeds the expected maximum size, the number of buckets is increased
75 * maximum size. On the other hand, iteration over collection views requires
77 * pays not to set the expected maximum size too high if you are especially
141 * (specified) expected maximum size of 21, given a load factor
149 * to an expected maximum size of 2, given a load factor of 2/3.
171 private int size; field in class:IdentityHashMap
179 * The next size valu
282 public int size() { method in class:IdentityHashMap
970 public int size() { method in class:IdentityHashMap.KeySet
1039 public int size() { method in class:IdentityHashMap.Values
1121 public int size() { method in class:IdentityHashMap.EntrySet
[all...]
H A DLinkedList.java85 transient int size = 0; field in class:LinkedList
131 size++;
146 size++;
162 size++;
180 size--;
199 size--;
228 size--;
323 public int size() { method in class:LinkedList
324 return size;
385 return addAll(size,
[all...]
H A DVector.java31 * accessed using an integer index. However, the size of a
38 * size; it is usually larger because as components are added to the
39 * vector, the vector's storage increases in chunks the size of
105 * incremented when its size becomes greater than its capacity. If
149 * has size {@code 10} and its standard capacity increment is
193 * size. If the capacity of this vector is larger than its current
194 * size, then the capacity is changed to equal the size by replacing
215 * larger one. The size of the new data array will be the old size plu
310 public synchronized int size() { method in class:Vector
[all...]

Completed in 117 milliseconds

<<21222324252627282930>>