Searched defs:size (Results 501 - 525 of 1126) sorted by relevance

<<21222324252627282930>>

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/util/
H A DXSObjectListImpl.java161 public int size() { method in class:XSObjectListImpl
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DChunkedIntArray.java35 * not to mention driving up code size. If you want to inline it, feel free.
56 * Create a new CIA with specified record size. Currently record size MUST
94 if (chunkpos > chunks.size() - 1)
230 if (chunkpos > chunks.size() - 1)
263 if (chunkpos > chunks.size() - 1)
281 final int size() method in class:ChunkedIntArray.ChunksVector
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DFastStringBuffer.java44 * The size values are parameterized, to allow tuning this code. In
58 // If nonzero, forces the inial chunk size.
65 // If we want to retain the variable-size-block feature, we need to reconsider
66 // that issue. For now, I have forced us into fixed-size mode.
107 * the largest permissible chunk size is in this particular FastStringBuffer
114 * many chunks should be allocated at one size before we encapsulate them
115 * into the first chunk of the next size up. For example, if m_rechunkBits
116 * is set to 3, then after 8 chunks at a given size we will rebundle
117 * them as the first element of a FastStringBuffer using a chunk size
123 * Field m_chunkSize establishes the maximum size o
270 public final int size() method in class:FastStringBuffer
[all...]
H A DNodeVector.java71 * Construct a NodeVector, using the given block size.
108 public int size() method in class:NodeVector
401 int nNodes = nodes.size();
518 * than the current size of the vector.
H A DSuballocatedIntVector.java78 * block size is currently 2K, which may be overkill for
87 * Construct a IntVector, using the given block size and number
88 * of blocks. For efficiency, we will round the requested size
110 /** Construct a IntVector, using the given block size and
125 public int size() method in class:SuballocatedIntVector
158 // size is 4M integers... and we grow by at least that much each
384 * than the current size of the vector.
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DVariableStack.java117 * Get size of the stack.
119 * @return the total size of the execution stack.
121 public int size() method in class:VariableStack
129 * @return the total size of the execution stack.
174 * @param size The size of the stack frame allocation. This ammount should
181 public int link(final int size) argument
185 _frameTop += size;
189 XObject newsf[] = new XObject[_stackFrames.length + XPathContext.RECURSIONLIMIT + size];
212 * {@link #link(int size)}
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/protocol/giopmsgheaders/
H A DMessage.java89 void setSize(ByteBuffer byteBuffer, int size); argument
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/transport/
H A DCorbaConnection.java62 public ByteBuffer read(int size, int offset, int length, long max_wait_time) argument
/openjdk7/hotspot/agent/src/os/bsd/
H A Dps_proc.c45 static inline uintptr_t align(uintptr_t ptr, size_t size) { argument
46 return (ptr & ~(size - 1));
53 // read "size" bytes of data from "addr" within the target process.
58 static bool process_read_data(struct ps_prochandle* ph, uintptr_t addr, char *buf, size_t size) { argument
61 uintptr_t end_addr = addr + size;
69 print_debug("ptrace(PT_READ_D, ..) failed for %d bytes @ %lx\n", size, addr);
85 print_debug("ptrace(PT_READ_D, ..) failed for %d bytes @ %lx\n", size, addr);
98 print_debug("ptrace(PT_READ_D, ..) failed for %d bytes @ %lx\n", size, addr);
109 uintptr_t addr, const char *buf , size_t size) {
108 process_write_data(struct ps_prochandle* ph, uintptr_t addr, const char *buf , size_t size) argument
H A Dsymtab.c47 uintptr_t size; member in struct:elf_symbol
120 size_t size; local
148 size = scn_cache[shdr->sh_link].c_shdr->sh_size;
149 symtab->strs = malloc(size);
152 memcpy(symtab->strs, scn_cache[shdr->sh_link].c_data, size);
154 // allocate memory for storing symbol offset and size;
174 symtab->symbols[j].size = syms->st_size;
177 key.size = strlen(sym_name) + 1;
179 value.size = sizeof(void *);
224 key.size
[all...]
/openjdk7/hotspot/agent/src/os/linux/
H A Dps_proc.c44 static inline uintptr_t align(uintptr_t ptr, size_t size) { argument
45 return (ptr & ~(size - 1));
52 // read "size" bytes of data from "addr" within the target process.
57 static bool process_read_data(struct ps_prochandle* ph, uintptr_t addr, char *buf, size_t size) { argument
60 uintptr_t end_addr = addr + size;
68 print_debug("ptrace(PTRACE_PEEKDATA, ..) failed for %d bytes @ %lx\n", size, addr);
84 print_debug("ptrace(PTRACE_PEEKDATA, ..) failed for %d bytes @ %lx\n", size, addr);
97 print_debug("ptrace(PTRACE_PEEKDATA, ..) failed for %d bytes @ %lx\n", size, addr);
108 uintptr_t addr, const char *buf , size_t size) {
107 process_write_data(struct ps_prochandle* ph, uintptr_t addr, const char *buf , size_t size) argument
/openjdk7/hotspot/agent/src/share/classes/com/sun/java/swing/ui/
H A DCommonUI.java225 private static void setButtonSize(JButton button, Dimension size) argument
228 button.setMinimumSize(size);
231 button.setPreferredSize(size);
235 if(psize.width < size.width)
236 button.setPreferredSize(size);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DHotSpotTypeDataBase.java185 long size = entryAddr.getCIntegerAt(typeEntrySizeOffset, C_INT64_SIZE, true);
187 createType(typeName, superclassName, isOopType, isIntegerType, isUnsigned, size);
221 "order to determine the size of Java primitive types. Can not continue.");
315 long size = Long.parseLong(t.sval);
348 if (type.getSize() != size) {
350 type.setSize(size);
352 throw new RuntimeException("size mismatch in type definition: " + typeName + ": " + type.getSize() + " != " + size);
359 createType(typeName, superclassName, isOop, isInteger, isUnsigned, size);
410 long size
697 createType(String typeName, String superclassName, boolean isOopType, boolean isIntegerType, boolean isUnsigned, long size) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicType.java33 private int size; field in class:BasicType
38 protected BasicType(String name, int size) { argument
39 this(name, size, 0);
42 protected BasicType(String name, int size, int cvAttributes) { argument
44 this.size = size;
53 public int getSize() { return size; }
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DMethodData.java135 size = new CIntField(type.getCIntegerField("_size"), 0);
197 private static CIntField size; field in class:MethodData
206 return alignObjectSize(size.getValue(this));
222 visitor.doCInt(size, true);
291 private byte[] fetchDataAt(Address base, long offset, long size) { argument
292 byte[] result = new byte[(int)size];
293 for (int i = 0; i < size; i++) {
H A DOop.java71 public static long getHeaderSize() { return headerSize; } // Header size in bytes.
103 // Returns the byte size of this object
125 // Align the object size.
126 public static long alignObjectSize(long size) { argument
127 return VM.getVM().alignUp(size, VM.getVM().getMinObjAlignmentInBytes());
216 long size = getObjectSize() * 4;
217 for (long i = 0; i < size; i += 4) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/types/basic/
H A DBasicType.java49 private long size; field in class:BasicType
118 this.size = sizeInBytes;
122 return size;
/openjdk7/jdk/src/share/classes/javax/print/
H A DMimeType.java174 public int size() { method in class:MimeType.ParameterMapEntrySet
625 int n = thePieces.size();
/openjdk7/jdk/src/share/classes/javax/security/auth/
H A DSubject.java667 // (like size()), which don't seem security-sensitive.
741 // (like size()), which don't seem security-sensitive.
1005 public int size() { method in class:Subject.SecureSet
1006 return elements.size();
1378 public int size() { method in class:Subject.ClassSet
1379 return set.size();
/openjdk7/jdk/src/share/classes/javax/sql/rowset/
H A DCachedRowSet.java49 * JavaBeans<sup><font size=-2>TM</font></sup> component and is scrollable,
379 * size by the amount of data it can store in memory at one time.
413 * Interface<sup><font size=-2>TM</font></sup> (JNDI) API. This registration
502 * <code>setPageSize</code>. In other words, if the page size is set to five, a chunk
553 * <i>rs</i> with 1000 rows of data. If the page size has been set to 100, the first
589 * object containing the number of rows set as the page size. So, for instance, the
995 * row of a <code>RowSet</code> object. Therefore, the size of each
1027 * is used, it size must be exactly equal to the number of rows
1056 * is used, it size must be exactly equal to the number of rows
1141 public int size(); method in interface:CachedRowSet
1590 setPageSize(int size) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDefaultListModel.java47 * of all JavaBeans<sup><font size="-2">TM</font></sup>
62 * This method is identical to <code>size</code>, which implements the
65 * <code>size</code> is identifiable as a JavaBean property.
68 * @see #size()
71 return delegate.size();
84 * is negative or greater than the current size of this
105 * Trims the capacity of this list to be the list's current size.
126 * Sets the size of this list.
128 * @param newSize the new size of this list
132 int oldSize = delegate.size();
158 public int size() { method in class:DefaultListModel
[all...]
H A DJTextArea.java72 * and <code>columns</code> that are used to determine the preferred size.
74 * preferred size of the viewport when placed inside a <code>JScrollPane</code>
76 * <code>JTextArea</code> has a preferred size of what is needed to
80 * the preferred size along that axis is used for
81 * the viewport preferred size along the same axis.
98 * <dt><b><font size=+1>Newlines</font></b>
115 * of all JavaBeans<sup><font size="-2">TM</font></sup>
257 * when the tab size changes.
259 * @param size number of characters to expand to
266 public void setTabSize(int size) { argument
[all...]
H A DSpring.java120 * of all JavaBeans<sup><font size="-2">TM</font></sup>
207 protected int size = UNSET; field in class:Spring.AbstractSpring
210 return size != UNSET ? size : getPreferredValue();
213 public final void setValue(int size) { argument
214 if (this.size == size) {
217 if (size == UNSET) {
220 setNonClearValue(size);
225 size
228 setNonClearValue(int size) argument
291 setValue(int size) argument
490 setNonClearValue(int size) argument
507 setNonClearValue(int size) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/table/
H A DDefaultTableModel.java53 * of all JavaBeans<sup><font size="-2">TM</font></sup>
89 private static Vector newVector(int size) { argument
90 Vector v = new Vector(size);
91 v.setSize(size);
306 * Sets the number of rows in the model. If the new size is greater
307 * than the current size, new rows are added to the end of the model
308 * If the new size is less than the current size, all
330 * Sets the number of rows in the model. If the new size is greater
331 * than the current size, ne
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DStyledEditorKit.java335 new FontSizeAction("font-size-8", 8),
336 new FontSizeAction("font-size-10", 10),
337 new FontSizeAction("font-size-12", 12),
338 new FontSizeAction("font-size-14", 14),
339 new FontSizeAction("font-size-16", 16),
340 new FontSizeAction("font-size-18", 18),
341 new FontSizeAction("font-size-24", 24),
342 new FontSizeAction("font-size-36", 36),
343 new FontSizeAction("font-size-48", 48),
374 * of all JavaBeans<sup><font size
561 FontSizeAction(String nm, int size) argument
592 private int size; field in class:StyledEditorKit.FontSizeAction
[all...]

Completed in 98 milliseconds

<<21222324252627282930>>