Searched refs:size (Results 301 - 325 of 3453) sorted by relevance

<<11121314151617181920>>

/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DObjectPool.java83 * @param size Size of vector to allocate
85 public ObjectPool(Class type, int size) argument
88 freeStack = new ArrayList(size);
115 Object result = freeStack.remove(freeStack.size() - 1);
150 Object result = freeStack.remove(freeStack.size() - 1);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicMemberFunctionType.java37 int size,
42 this(name, size, returnType, containingClass, thisType, thisAdjust, 0);
46 int size,
52 super(name, size, returnType, cvAttributes);
36 BasicMemberFunctionType(String name, int size, Type returnType, Type containingClass, Type thisType, long thisAdjust) argument
45 BasicMemberFunctionType(String name, int size, Type returnType, Type containingClass, Type thisType, long thisAdjust, int cvAttributes) argument
H A DBasicPointerType.java33 public BasicPointerType(int size, Type targetType) { argument
34 this(null, size, targetType, 0);
37 private BasicPointerType(String name, int size, Type targetType, int cvAttributes) { argument
38 super(name, size, cvAttributes);
H A DBasicRefType.java33 public BasicRefType(String name, int size, Type targetType) { argument
34 this(name, size, targetType, 0);
37 private BasicRefType(String name, int size, Type targetType, int cvAttributes) { argument
38 super(name, size, cvAttributes);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DHeapPrinter.java37 public void prologue(long size) {} argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DSignatureInfo.java31 protected int size; field in class:SignatureInfo
41 protected abstract void set(int size, int /*BasicType*/ type); argument
61 public int size() { lazyIterate(); return size; } method in class:SignatureInfo
/openjdk7/jdk/src/share/classes/javax/swing/
H A DSpinnerListModel.java71 * size, an <code>IllegalArugmentException</code> is thrown.
75 * <code>null</code> or zero size
78 if (values == null || values.size() == 0) {
141 if ((list == null) || (list.size() == 0)) {
204 return (index >= (list.size() - 1)) ? null : list.get(index + 1);
229 int max = list.size();
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicComboBoxRenderer.java44 * of all JavaBeans<sup><font size="-2">TM</font></sup>
76 Dimension size;
80 size = super.getPreferredSize();
84 size = super.getPreferredSize();
87 return size;
138 * of all JavaBeans<sup><font size="-2">TM</font></sup>
/openjdk7/jdk/src/share/classes/javax/swing/plaf/multi/
H A DMultiFileChooserUI.java83 for (int i = 1; i < uis.size(); i++) {
98 for (int i = 1; i < uis.size(); i++) {
113 for (int i = 1; i < uis.size(); i++) {
128 for (int i = 1; i < uis.size(); i++) {
138 for (int i = 0; i < uis.size(); i++) {
147 for (int i = 0; i < uis.size(); i++) {
165 for (int i = 1; i < uis.size(); i++) {
175 for (int i = 0; i < uis.size(); i++) {
196 for (int i = 0; i < uis.size(); i++) {
205 for (int i = 0; i < uis.size();
[all...]
H A DMultiSplitPaneUI.java74 for (int i = 0; i < uis.size(); i++) {
83 for (int i = 0; i < uis.size(); i++) {
97 for (int i = 1; i < uis.size(); i++) {
112 for (int i = 1; i < uis.size(); i++) {
127 for (int i = 1; i < uis.size(); i++) {
137 for (int i = 0; i < uis.size(); i++) {
155 for (int i = 1; i < uis.size(); i++) {
165 for (int i = 0; i < uis.size(); i++) {
186 for (int i = 0; i < uis.size(); i++) {
195 for (int i = 0; i < uis.size();
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DDictionary.java63 abstract public int size(); method in class:Dictionary
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DvmPSOperations.cpp35 VM_ParallelGCFailedAllocation::VM_ParallelGCFailedAllocation(size_t size, argument
38 _size(size),
57 VM_ParallelGCFailedPermanentAllocation::VM_ParallelGCFailedPermanentAllocation(size_t size, argument
60 _size(size),
/openjdk7/hotspot/src/share/vm/memory/
H A DcompactPermGen.hpp48 HeapWord* mem_allocate(size_t size);
H A DfreeBlockDictionary.hpp55 virtual Chunk* get_chunk(size_t size, Dither dither = atLeast) = 0;
62 virtual void reset(HeapWord* addr, size_t size) = 0;
65 virtual void dict_census_udpate(size_t size, bool split, bool birth) = 0;
66 virtual bool coal_dict_over_populated(size_t size) = 0;
H A DthreadLocalAllocBuffer.inline.hpp34 inline HeapWord* ThreadLocalAllocBuffer::allocate(size_t size) { argument
37 if (pointer_delta(end(), obj) >= size) {
44 Copy::fill_to_words(obj + hdr_size, size - hdr_size, badHeapWordVal);
47 // at least size below end, so the add can't wrap.
48 set_top(obj + size);
59 // Compute the size for the new TLAB.
87 // Raise size required to bypass TLAB next time. Why? Else there's
89 // size will get stuck on this slow path.
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/motif/
H A DMotifSplitPaneDivider.java86 * overrides to hardcode the size of the divider
112 // PENDING(jeff) - the thumb's location and size is currently hard coded.
116 Dimension size = getSize();
120 g.fillRect(0, 0, size.width, size.height);
124 int center = size.width/2;
130 g.drawLine(center-1, 0, center-1, size.height);
133 g.drawLine(center, 0, center, size.height);
151 int center = size.height/2;
152 int x = size
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jdi/request/
H A DStepRequest.java66 * @return the step size
68 int size(); method in interface:StepRequest
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/util/
H A DCacheMap.java100 int size = cache.size();
101 if (size == nSoftReferences) {
102 if (size == 0)
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/encryption/
H A DEncryptionMethod.java56 * Returns the key size of the key of the algorithm applied to the cipher
59 * @return the key size.
64 * Sets the size of the key of the algorithm applied to the cipher data.
66 * @param size the key size.
68 void setKeySize(int size); argument
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/parser/
H A DMappedReadBuffer.java55 long size = ch.size();
56 // if file size is more than 2 GB and when file mapping is
58 if (canUseFileMap() && (size <= Integer.MAX_VALUE)) {
61 buf = ch.map(FileChannel.MapMode.READ_ONLY, 0, size);
/openjdk7/hotspot/src/os/linux/vm/
H A Ddecoder_linux.cpp33 size_t size = (size_t)buflen; local
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaSplitPaneDividerUI.java83 final Dimension size = getSize();
88 //System.err.println("Size = " + size + " orientation horiz = " + horizontal);
89 // size determines orientation
93 if (size.height > maxSize) {
94 final int diff = size.height - maxSize;
96 size.height = maxSize;
98 if (size.height < 4) doPaint = false;
100 if (size.width > maxSize) {
101 final int diff = size.width - maxSize;
103 size
[all...]
/openjdk7/jaxp/src/org/w3c/dom/html/
H A DHTMLBaseFontElement.java65 * Font size. See the size attribute definition in HTML 4.0. This
69 public void setSize(String size); argument
H A DHTMLFontElement.java65 * Font size. See the size attribute definition in HTML 4.0. This
69 public void setSize(String size); argument
H A DHTMLHRElement.java65 * The height of the rule. See the size attribute definition in HTML
69 public void setSize(String size); argument

Completed in 330 milliseconds

<<11121314151617181920>>