Searched defs:size (Results 101 - 125 of 1126) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/crypto/
H A DDesCbcMd5EType.java69 * @param size the length of data.
74 protected byte[] calculateChecksum(byte[] data, int size) argument
/openjdk7/jdk/src/share/classes/sun/util/resources/
H A DOpenListResourceBundle.java143 protected Map createMap(int size) { argument
144 return new HashMap(size);
/openjdk7/jdk/test/java/security/KeyRep/
H A DSerial.java179 private static void checkKey(String algorithm, int size) throws Exception { argument
182 if (size > 0) {
183 kg.init(size);
/openjdk7/jdk/test/javax/swing/JInternalFrame/
H A DTest6802868.java47 private Dimension size; field in class:Test6802868
67 this.size = this.internal.getSize();
72 if (this.internal.getSize().equals(this.size)) {
73 throw new Error("InternalFrame hasn't changed its size");
93 Dimension size = this.frame.getSize();
94 size.width += 10;
95 size.height += 10;
96 this.frame.setSize(size);
/openjdk7/jdk/test/javax/swing/border/
H A DTest6910490.java49 Dimension size = new Dimension(getWidth() / 2, getHeight());
52 create("Color", size, new MatteBorder(insets, RED)),
53 create("Icon", size, new MatteBorder(insets, this)));
54 pane.setDividerLocation(size.width - pane.getDividerSize() / 2);
58 private JScrollPane create(String name, Dimension size, MatteBorder border) { argument
60 button.setPreferredSize(size);
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DRenderCache.java66 public RenderCache(int size) { argument
67 entries = new Entry[size];
/openjdk7/jdk/src/share/classes/sun/misc/
H A DLRUCache.java36 private final int size; field in class:LRUCache
38 public LRUCache(int size) { argument
39 this.size = size;
55 oa = (V[])new Object[size];
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DContextList.java43 public synchronized int size () { method in class:ContextList
44 return list.size();
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DFileLockImpl.java36 FileLockImpl(FileChannel channel, long position, long size, boolean shared) argument
38 super(channel, position, size, shared);
41 FileLockImpl(AsynchronousFileChannel channel, long position, long size, boolean shared) argument
43 super(channel, position, size, shared);
/openjdk7/jdk/src/share/classes/sun/nio/fs/
H A DNativeBuffer.java39 private final int size; field in class:NativeBuffer
56 NativeBuffer(int size) { argument
57 this.address = unsafe.allocateMemory(size);
58 this.size = size;
70 int size() { method in class:NativeBuffer
71 return size;
H A DNativeBuffers.java44 * Allocates a native buffer, of at least the given size, from the heap.
46 static NativeBuffer allocNativeBuffer(int size) { argument
48 if (size < 2048) size = 2048;
49 return new NativeBuffer(size);
53 * Returns a native buffer, of at least the given size, from the thread
56 static NativeBuffer getNativeBufferFromCache(int size) { argument
62 if (buffer != null && buffer.size() >= size) {
72 * Returns a native buffer, of at least the given size
76 getNativeBuffer(int size) argument
[all...]
/openjdk7/langtools/test/tools/javac/
H A DT6956638.java109 System.err.println("2- parsed:" + size(parsedTrees) + " analysed:" + size(analyzedTrees) + " generated:" + size(generatedFiles));
124 if (size(generatedFiles) != size(parsedTrees)) {
125 throw new Exception("wrong number of files generated: " + size(generatedFiles)
126 + " expected: " + size(parsedTrees));
138 private static <E> int size(Iterable<E> x) { method in class:T6956638
/openjdk7/jdk/test/sun/rmi/rmic/newrmic/equivalence/
H A DMyObjectImpl.java37 public MyObjectImpl(int c, int size) //MyObjectFactory mof, int c, int size) argument
42 this.data = new byte[size];
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/util/
H A DByteListImpl.java103 public int size() { method in class:ByteListImpl
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DIntStack.java47 /** Returns the size of the stack. */
48 public int size() { method in class:IntStack
105 private void ensureCapacity(int size) { argument
109 else if (fData.length <= size) {
H A DSynchronizedSymbolTable.java51 // construct synchronized symbol table of default size
56 // construct synchronized symbol table of given size
57 public SynchronizedSymbolTable(int size) { argument
58 fSymbolTable = new SymbolTable(size);
H A DXMLStringBuffer.java94 /** Default buffer size (32). */
115 * @param size
117 public XMLStringBuffer(int size) { argument
118 ch = new char[size];
/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/corba/src/share/classes/com/sun/corba/se/impl/util/
H A DRepositoryIdCache.java58 final void increasePool(int size) { argument
59 //if (cache.size() <= MAX_CACHE_SIZE)
60 for (int i = size; i > 0; i--)
67 int numToReclaim = cache.size() / 2;
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DTokenBuffer.java55 TokenBuffer (int size) throws Exception argument
57 _size = size; // _size == 0 is legal, but useless and problematic
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/x86/
H A DX86FPInstruction.java34 public X86FPInstruction(String name, int size, int prefixes) { argument
35 super(name, size, prefixes);
40 public X86FPInstruction(String name, Operand op1, int size, int prefixes) { argument
41 super(name, size, prefixes);
H A DX86MemoryInstruction.java36 public X86MemoryInstruction(String name, Address address, X86Register register, int dataType, int size, int prefixes) { argument
37 super(name, size, prefixes);
H A DX86MoveStoreInstruction.java33 public X86MoveStoreInstruction(String name, Address address, X86Register register, int dataType, int size, int prefixes) { argument
34 super(name, address, register, dataType, size, prefixes);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/compiler/
H A DOopMapStream.java33 private int size; field in class:OopMapStream
54 size = (int) oopMap.getOMVCount();
90 while (position++ < size) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicDoubleType.java31 public BasicDoubleType(String name, int size) { argument
32 this(name, size, 0);
35 private BasicDoubleType(String name, int size, int cvAttributes) { argument
36 super(name, size, cvAttributes);

Completed in 83 milliseconds

1234567891011>>