Searched refs:getSize (Results 26 - 50 of 524) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DGrowableIntArray.java71 return Arrays.copyOf(array, getSize());
98 public final int getSize() { method in class:GrowableIntArray
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/
H A DLoadObject.java41 public long getSize(); method in interface:LoadObject
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/model/
H A DJavaThing.java84 abstract public int getSize(); method in class:JavaThing
H A DReachableObjects.java57 if (t != null && t.getSize() > 0 && bag.get(t) == null) {
96 int diff = right.getSize() - left.getSize();
105 this.totalSize = root.getSize();
107 this.totalSize += things[i].getSize();
/openjdk7/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/
H A DNMethod.java53 public long getSize() { method in class:NMethod
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWPanelPeer.java49 return getBounds().getSize();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DInterpreterCodelet.java61 instanceSize = type.getSize();
68 public long getSize() { method in class:InterpreterCodelet
77 return addr.addOffsetTo(getSize());
/openjdk7/jdk/test/javax/swing/JInternalFrame/
H A DTest6802868.java67 this.size = this.internal.getSize();
72 if (this.internal.getSize().equals(this.size)) {
93 Dimension size = this.frame.getSize();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DGraphicsUtilities.java89 Dimension d = component.getSize();
109 centerInContainer(c, c.getParent().getSize());
114 Dimension sz = component.getSize();
125 Dimension d = component.getParent().getSize();
128 Dimension sz = component.getSize();
141 randomLocation(c, c.getParent().getSize());
146 Dimension sz = component.getSize();
H A DHistoryComboBox.java61 int length = getModel().getSize();
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DLETableReference.h248 inline static size_t getSize();
253 size_t LETableVarSizer<T>::getSize() { function in class:LETableVarSizer
264 * template<> inline size_t LETableVarSizer<FeatureListTable>::getSize() { return sizeof(FeatureListTable) - (sizeof(le_uint16)*ANY_NUMBER); }
268 #define LE_VAR_ARRAY(x,y) template<> inline size_t LETableVarSizer<x>::getSize() { return sizeof(x) - (sizeof(((const x*)0)->y)); }
274 #define LE_CORRECT_SIZE(x,y) template<> inline size_t LETableVarSizer<x>::getSize() { return y; }
295 count = getLength()/LETableVarSizer<T>::getSize(); // fit to max size
297 LETableReference::verifyLength(0, LETableVarSizer<T>::getSize()*count, success);
310 count = getLength()/LETableVarSizer<T>::getSize(); // fit to max size
312 LETableReference::verifyLength(0, LETableVarSizer<T>::getSize()*count, success);
321 count = getLength()/LETableVarSizer<T>::getSize(); // fi
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DSlotAllocator.java44 size = vars[i].getType().getSize();
52 final int size = type.getSize();
83 final int size = lvg.getType().getSize();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicBitType.java53 public int getSize() { return underlyingType.getSize(); } method in class:BasicBitType
83 long val = ((a.getCIntegerAt(0, getSize(), isUnsigned())) >> getOffset()) & mask;
/openjdk7/jdk/test/javax/swing/JToolBar/4247996/
H A Dbug4247996.java69 if (!button.getSize().equals(toogleButton.getSize())) {
84 Dimension size = button.getSize();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/
H A DStub.java52 public long getSize() { Assert.that(false, "should not call this"); return 0; } method in class:Stub
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/win32/coff/
H A DDumpExports.java48 Integer.toHexString(dir.getRVA()) + ", size = " + dir.getSize() + "/0x" +
49 Integer.toHexString(dir.getSize()));
56 System.out.println(" VirtualSize = " + sec.getSize() + "/0x" +
57 Integer.toHexString(sec.getSize()));
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDefaultComboBoxModel.java64 if ( getSize() > 0 ) {
78 if ( getSize() > 0 ) {
103 public int getSize() { method in class:DefaultComboBoxModel
145 setSelectedItem( getSize() == 1 ? null : getElementAt( index + 1 ) );
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsSplitPaneDivider.java64 Dimension size = getSize();
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/agent/
H A DSnmpMibRequest.java167 public int getSize(); method in interface:SnmpMibRequest
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Graph/src/com/sun/hotspot/igv/graph/
H A DOutputSlot.java48 return new Point(getFigure().getWidth() * (getPosition() + 1) / (getFigure().getOutputSlots().size() + 1), getFigure().getSize().height - Figure.SLOT_WIDTH + Figure.SLOT_START);
/openjdk7/jaxp/src/org/w3c/dom/html/
H A DHTMLSelectElement.java116 public int getSize(); method in interface:HTMLSelectElement
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/
H A DXSModelGroup.java80 int getSize(); method in interface:XSModelGroup
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/ui/
H A DCompactLayout.java83 return getSize(parent, false);
93 return getSize(parent, true);
96 public Dimension getSize(Container parent, boolean minimum) { method in class:CompactLayout
132 Dimension size = parent.getSize();
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftAudioBuffer/
H A DNewSoftAudioBuffer.java51 assertEquals(buff.getSize(), 377);
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DInvokeInstruction.java112 sum += args[i].getSize();
123 return getReturnType(cpg).getSize();

Completed in 69 milliseconds

1234567891011>>