Searched defs:size (Results 26 - 50 of 1126) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DConfounder.java42 public static byte[] bytes(int size) { argument
43 byte[] data = new byte[size];
/openjdk7/jdk/src/share/classes/sun/swing/
H A DBakedArrayList.java52 public BakedArrayList(int size) { argument
53 super(size);
57 this(data.size());
58 for (int counter = 0, max = data.size(); counter < max; counter++){
70 for (int counter = size() - 1; counter >= 0; counter--) {
81 int size = size();
83 if (list.size() != size) {
86 while (size
[all...]
/openjdk7/jdk/src/share/classes/sun/util/resources/
H A DTimeZoneNamesBundle.java92 protected Map createMap(int size) { argument
93 return new LinkedHashMap(size);
/openjdk7/jdk/test/java/util/AbstractSequentialList/
H A DAddAll.java45 public int size() { method in class:FooList
46 return a.size();
/openjdk7/jdk/test/java/util/HashMap/
H A DOverrideIsEmpty.java53 public int size() { method in class:OverrideIsEmpty.NotEmptyHashMap
54 return super.size() + 1;
59 return size() == 0;
/openjdk7/langtools/test/tools/javac/foreach/
H A DSuperfluousAbstract.java43 public int size() { return 0; } method in class:ConcreteQ
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DBufferQueue.java49 public int size() method in class:BufferQueue
51 return list.size();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/
H A DX86BranchInstruction.java33 public X86BranchInstruction(String name, X86PCRelativeAddress addr, int size, int prefixes) { argument
34 super(name, size, prefixes);
H A DX86CallInstruction.java33 public X86CallInstruction(String name, Address addr, int size, int prefixes) { argument
34 super(name, size, prefixes);
H A DX86CondJmpInstruction.java33 public X86CondJmpInstruction(String name, X86PCRelativeAddress addr, int size, int prefixes) { argument
34 super(name, size, prefixes);
H A DX86FPLoadInstruction.java33 public X86FPLoadInstruction(String name, Operand operand, int size, int prefixes) { argument
34 super(name, size, prefixes);
H A DX86FPStoreInstruction.java33 public X86FPStoreInstruction(String name, Operand op, int size, int prefixes) { argument
34 super(name, size, prefixes);
H A DX86JmpInstruction.java33 public X86JmpInstruction(String name, Address addr, int size, int prefixes) { argument
34 super(name, size, prefixes);
H A DX86MoveLoadInstruction.java31 public X86MoveLoadInstruction(String name, X86Register register, Address address, int dataType, int size, int prefixes) { argument
32 super(name, address, register, dataType, size, prefixes);
H A DX86PCRelativeAddress.java39 public void setInstructionSize(int size) { argument
40 instrSize = size;
49 //So we add the size of current instruction to get the correct disp.
H A DX86RotateInstruction.java33 public X86RotateInstruction(String name, Operand operand1, ImmediateOrRegister operand2, int size, int prefixes) { argument
34 super(name, size, prefixes);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/
H A DSharedObject.java34 SharedObject(BsdDebugger dbg, String filename, long size, Address relocation) { argument
35 super(filename, size, relocation);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/linux/
H A DSharedObject.java34 SharedObject(LinuxDebugger dbg, String filename, long size, Address relocation) { argument
35 super(filename, size, relocation);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/proc/
H A DSharedObject.java34 SharedObject(ProcDebugger dbg, String filename, long size, Address relocation) { argument
35 super(filename, size, relocation);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DMaskFillerForNative.java37 this.size = maskSize;
54 private int size; field in class:MaskFillerForNative
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DFreeList.java61 public long size() { method in class:FreeList
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DCIntField.java34 size = vmField.getSize();
38 private long size; field in class:CIntField
42 return obj.getHandle().getCIntegerAt(getOffset(), size, isUnsigned);
45 return addr.getCIntegerAt(getOffset(), size, isUnsigned);
H A DCellTypeStateList.java31 public CellTypeStateList(int size) { argument
32 list = new ArrayList(size);
33 for (int i = 0; i < size; i++) {
38 public int size() { method in class:CellTypeStateList
39 return list.size();
H A DHeapPrinter.java37 public void prologue(long size) {} argument
H A DObjectHistogram.java36 public void prologue(long size) {} argument
48 ObjectHistogramElements in descending order of total heap size

Completed in 98 milliseconds

1234567891011>>