/openjdk7/jdk/src/share/classes/sun/reflect/ |
H A D | ByteVectorImpl.java | 47 resize(index); 55 resize(index); 63 resize(pos); 80 private void resize(int minSize) { method in class:ByteVectorImpl
|
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/internal/ |
H A D | ArrayQueue.java | 39 public void resize(int newcapacity) { method in class:ArrayQueue
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/util/ |
H A D | CharArrayArray.java | 91 resize(); 97 protected final void resize() { method in class:CharArrayArray
|
H A D | QualifiedNameArray.java | 96 resize(); 102 protected final void resize() { method in class:QualifiedNameArray
|
H A D | StringArray.java | 100 resize(); 107 protected final void resize() { method in class:StringArray
|
H A D | CharArrayIntMap.java | 192 resize(2 * _table.length); 196 private final void resize(int newCapacity) { method in class:CharArrayIntMap
|
H A D | ContiguousCharArrayArray.java | 161 resize(); 173 resize(); 193 protected final void resize() { method in class:ContiguousCharArrayArray
|
H A D | StringIntMap.java | 176 resize(2 * _table.length); 180 protected final void resize(int newCapacity) { method in class:StringIntMap
|
/openjdk7/jdk/src/share/demo/jvmti/hprof/ |
H A D | hprof_stack.c | 60 resize(Stack *stack) function 155 resize(stack);
|
/openjdk7/jdk/src/share/classes/javax/swing/text/ |
H A D | GapVector.java | 210 * resize the underlying storage array to the 213 void resize(int nsize) { method in class:GapVector 229 resize(arrayLength);
|
H A D | StringContent.java | 215 void resize(int ncount) { method in class:StringContent
|
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/ |
H A D | g1CardCounts.cpp | 92 void G1CardCounts::resize(size_t heap_capacity) { function in class:G1CardCounts
|
/openjdk7/jdk/src/share/classes/java/applet/ |
H A D | Applet.java | 213 public void resize(int width, int height) { method in class:Applet 216 super.resize(width, height); 228 public void resize(Dimension d) { method in class:Applet 229 resize(d.width, d.height);
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/stream/buffer/ |
H A D | AttributesHolder.java | 149 resize(i); 173 resize(i); 186 private void resize(int length) { method in class:AttributesHolder
|
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/ |
H A D | BitArray.java | 236 public final void resize(int newSize) { method in class:BitArray
|
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/ |
H A D | XSAttributeGroupDecl.java | 90 fAttributeUses = resize(fAttributeUses, fAttrUseNum*2); 315 static final XSAttributeUseImpl[] resize(XSAttributeUseImpl[] oldArray, int newSize) { method in class:XSAttributeGroupDecl
|
H A D | XSDeclarationPool.java | 187 fElementDecl = resize(fElementDecl, fElementDecl.length * 2); 196 private static XSElementDecl[][] resize(XSElementDecl array[][], int newsize) { method in class:XSDeclarationPool 204 fParticleDecl = resize(fParticleDecl, fParticleDecl.length * 2); 215 fModelGroup = resize(fModelGroup, fModelGroup.length * 2); 224 private static XSParticleDecl[][] resize(XSParticleDecl array[][], int newsize) { method in class:XSDeclarationPool 230 private static XSModelGroupImpl[][] resize(XSModelGroupImpl array[][], int newsize) { method in class:XSDeclarationPool 238 fAttrDecl = resize(fAttrDecl, fAttrDecl.length * 2); 247 private static XSAttributeDecl[][] resize(XSAttributeDecl array[][], int newsize) { method in class:XSDeclarationPool 255 fAttributeUse = resize(fAttributeUse, fAttributeUse.length * 2); 264 private static XSAttributeUseImpl[][] resize(XSAttributeUseImp method in class:XSDeclarationPool 281 private static XSSimpleTypeDecl[][] resize(XSSimpleTypeDecl array[][], int newsize) { method in class:XSDeclarationPool 299 private static XSComplexTypeDecl[][] resize(XSComplexTypeDecl array[][], int newsize) { method in class:XSDeclarationPool [all...] |
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/identity/ |
H A D | IdentityConstraint.java | 107 fFields = resize(fFields, fFieldCount*2); 159 static final Field[] resize(Field[] oldArray, int newSize) { method in class:IdentityConstraint
|
/openjdk7/jdk/src/share/classes/java/lang/ |
H A D | ThreadLocal.java | 298 * The next size value at which to resize. 303 * Set the resize threshold to maintain at worst a 2/3 load factor. 637 resize(); 643 private void resize() { method in class:ThreadLocal.ThreadLocalMap
|
/openjdk7/hotspot/src/share/vm/gc_implementation/parNew/ |
H A D | asParNewGeneration.cpp | 53 void ASParNewGeneration::resize(size_t eden_size, size_t survivor_size) { function in class:ASParNewGeneration 54 // Resize the generation if needed. If the generation resize 55 // reports false, do not attempt to resize the spaces. 175 return false; // Error if we fail to resize! 339 // To may resize into from space as long as it is clear of live data. 591 resize(size_policy->calculated_eden_size_in_bytes(),
|
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/ |
H A D | psYoungGen.cpp | 187 // step resize-with-live-data procedure. 261 void PSYoungGen::resize(size_t eden_size, size_t survivor_size) { function in class:PSYoungGen 262 // Resize the generation if needed. If the generation resize 263 // reports false, do not attempt to resize the spaces. 308 return false; // Error if we fail to resize! 534 // To may resize into from space as long as it is clear of live data. 592 // to space as if we were able to resize from space, even though from
|
/openjdk7/hotspot/src/share/vm/memory/ |
H A D | threadLocalAllocBuffer.cpp | 91 // thread for use in the next resize operation. 141 thread->tlab().resize(); 145 void ThreadLocalAllocBuffer::resize() { function in class:ThreadLocalAllocBuffer
|
/openjdk7/jdk/src/share/classes/java/awt/ |
H A D | Rectangle.java | 626 resize(width, height); 639 public void resize(int width, int height) { method in class:Rectangle
|
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/ |
H A D | CImage.java | 69 img.resize(width, height); 184 CImage resize(final double w, final double h) { method in class:CImage
|
/openjdk7/hotspot/test/compiler/6865031/ |
H A D | Test.java | 348 resize(tab.length * 2); 361 * resize the map, but but sets threshold to Integer.MAX_VALUE. 369 void resize(int newCapacity) method in class:WeakPool
|