Searched defs:resize (Results 26 - 50 of 54) sorted by relevance

123

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/util/
H A DQNameMap.java72 * The next size value at which to resize . Taking it as
187 resize(newCapacity);
220 * method to resize the table if appropriate.
227 resize(2 * table.length);
236 private void resize(int newCapacity) { method in class:QNameMap
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/sax/
H A DAttributesHolder.java217 resize();
225 resize();
243 private final void resize() { method in class:AttributesHolder
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/util/
H A DLocalNameQualifiedNamesMap.java186 resize(2 * _table.length);
192 private final void resize(int newCapacity) { method in class:LocalNameQualifiedNamesMap
H A DPrefixArray.java255 resize();
262 protected final void resize() { method in class:PrefixArray
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXSElementDecl.java112 fIDConstraints = resize(fIDConstraints, fIDCPos*2);
122 fIDConstraints = resize(fIDConstraints, fIDCPos);
127 static final IdentityConstraint[] resize(IdentityConstraint[] oldArray, int newSize) { method in class:XSElementDecl
H A DXMLSchemaLoader.java931 public void resize(int oldLength , int newLength){ method in class:XMLSchemaLoader.LocationArray
940 resize(length, Math.max(1, length*2));
947 resize(locations.length, length);
H A DSchemaGrammar.java857 fSubGroups = resize(fSubGroups, fSubGroupCount+INC_SIZE);
1082 fComplexTypeDecls = resize(fComplexTypeDecls, fCTCount+INC_SIZE);
1083 fCTLocators = resize(fCTLocators, fCTCount+INC_SIZE);
1095 fRedefinedGroupDecls = resize(fRedefinedGroupDecls, fRGCount << 1);
1096 fRGLocators = resize(fRGLocators, fRGCount);
1108 fComplexTypeDecls = resize(fComplexTypeDecls, fCTCount);
1109 fCTLocators = resize(fCTLocators, fCTCount);
1119 fComplexTypeDecls = resize(fComplexTypeDecls, fCTCount);
1120 fCTLocators = resize(fCTLocators, fCTCount);
1130 fRedefinedGroupDecls = resize(fRedefinedGroupDecl
1313 static final XSComplexTypeDecl[] resize(XSComplexTypeDecl[] oldArray, int newSize) { method in class:SchemaGrammar
1319 static final XSGroupDecl[] resize(XSGroupDecl[] oldArray, int newSize) { method in class:SchemaGrammar
1325 static final XSElementDecl[] resize(XSElementDecl[] oldArray, int newSize) { method in class:SchemaGrammar
1331 static final SimpleLocator[] resize(SimpleLocator[] oldArray, int newSize) { method in class:SchemaGrammar
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DIdentityHashMap.java179 * The next size value at which to resize (capacity * load factor).
445 resize(len); // len == 2 * current capacity.
454 private void resize(int newCapacity) { method in class:IdentityHashMap
501 resize(capacity(n));
1223 * The put method for readObject. It does not resize the table,
H A DHashMap.java162 * The next size value at which to resize (capacity * load factor).
532 * pseudoconstructors (clone, readObject). It does not resize the table,
568 * resize the map, but sets threshold to Integer.MAX_VALUE.
576 void resize(int newCapacity) { method in class:HashMap
633 * to at most one extra resize.
643 resize(newCapacity);
877 * method to resize the table if appropriate.
883 resize(2 * table.length);
H A DWeakHashMap.java163 * The next size value at which to resize (capacity * load factor).
534 resize(tab.length * 2);
544 * resize the map, but sets threshold to Integer.MAX_VALUE.
552 void resize(int newCapacity) { method in class:WeakHashMap
627 * to at most one extra resize.
637 resize(newCapacity);
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1BlockOffsetTable.cpp52 resize(init_word_size);
68 void G1BlockOffsetSharedArray::resize(size_t new_word_size) { function in class:G1BlockOffsetSharedArray
460 void G1BlockOffsetArray::resize(size_t new_word_size) { function in class:G1BlockOffsetArray
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsOldGen.cpp334 void PSOldGen::resize(size_t desired_free_space) { function in class:PSOldGen
/openjdk7/hotspot/src/share/vm/memory/
H A DblockOffsetTable.cpp55 resize(init_word_size);
71 void BlockOffsetSharedArray::resize(size_t new_word_size) { function in class:BlockOffsetSharedArray
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/internal/
H A DArrayNotificationBuffer.java171 resize(sharer.getSize());
192 resize(max);
205 private synchronized void resize(int newSize) { method in class:ArrayNotificationBuffer
210 queue.resize(newSize);
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/agent/
H A DSnmpMib.java97 resize();
110 if (index >= list.length) resize();
205 private final void resize() { method in class:LongList
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/fastinfoset/sax/helpers/
H A DEncodingAlgorithmAttributesImpl.java165 resize();
203 resize();
238 resize();
277 resize();
551 private final void resize() { method in class:EncodingAlgorithmAttributesImpl
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DQNameMap.java72 * The next size value at which to resize . Taking it as
180 resize(newCapacity);
221 * method to resize the table if appropriate.
228 resize(2 * table.length);
237 private void resize(int newCapacity) { method in class:QNameMap
/openjdk7/jaxp/src/com/sun/xml/internal/stream/dtd/nonvalidating/
H A DDTDGrammar.java753 fElementDeclName = resize(fElementDeclName, fElementDeclName.length * 2);
754 fElementDeclType = resize(fElementDeclType, fElementDeclType.length * 2);
755 fElementDeclFirstAttributeDeclIndex = resize(fElementDeclFirstAttributeDeclIndex, fElementDeclFirstAttributeDeclIndex.length * 2);
756 fElementDeclLastAttributeDeclIndex = resize(fElementDeclLastAttributeDeclIndex, fElementDeclLastAttributeDeclIndex.length * 2);
772 fAttributeDeclName = resize(fAttributeDeclName, fAttributeDeclName.length * 2);
773 fAttributeDeclType = resize(fAttributeDeclType, fAttributeDeclType.length * 2);
774 fAttributeDeclEnumeration = resize(fAttributeDeclEnumeration, fAttributeDeclEnumeration.length * 2);
775 fAttributeDeclDefaultType = resize(fAttributeDeclDefaultType, fAttributeDeclDefaultType.length * 2);
776 fAttributeDeclDefaultValue = resize(fAttributeDeclDefaultValue, fAttributeDeclDefaultValue.length * 2);
777 fAttributeDeclNonNormalizedDefaultValue = resize(fAttributeDeclNonNormalizedDefaultValu
797 private static short[][] resize(short array[][], int newsize) { method in class:DTDGrammar
803 private static int[][] resize(int array[][], int newsize) { method in class:DTDGrammar
809 private static QName[][] resize(QName array[][], int newsize) { method in class:DTDGrammar
815 private static String[][] resize(String array[][], int newsize) { method in class:DTDGrammar
821 private static String[][][] resize(String array[][][], int newsize) { method in class:DTDGrammar
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTableHeaderUI.java902 resize(true, th, ui);
904 resize(false, th, ui);
942 private void resize(boolean leftArrow, JTableHeader th, method in class:BasicTableHeaderUI.Actions
/openjdk7/hotspot/src/share/vm/utilities/
H A DbitMap.cpp55 resize(size_in_bits, in_resource_area);
58 void BitMap::resize(idx_t size_in_bits, bool in_resource_area) { function in class:BitMap
213 resize(2 * MAX2(size(), offset));
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DMethodType.java1044 // The next size value at which to resize (capacity * load factor).
1190 resize(tab.length * 2);
1200 * resize the set, but sets threshold to Integer.MAX_VALUE.
1208 private void resize(int newCapacity) { method in class:MethodType.WeakInternSet
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DMethodWriter.java358 private boolean resize; field in class:MethodWriter
979 resize |= label.resolve(this, code.length, code.data);
1818 if (resize) {
2086 * and instruction addresses consistent. This may require to resize other
2104 * resize another one, which may require to resize yet another one, and
2129 boolean[] resize; // instructions to be resized
2132 resize = new boolean[code.length];
2164 if (!resize[u]) {
2181 resize[
[all...]
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_table.c55 * The hash table will only be allocated if we have keys, and will resize
56 * when the table needs to resize. The hash buckets just provide the
424 LOG3("Table resize", ltable->name, ltable->resizes);
457 resize(LookupTable *ltable) function
466 LOG3("Table resize", ltable->name, ltable->resizes);
468 /* Adjust increment on every resize
624 resize(ltable);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXMLDocumentFragmentScannerImpl.java2115 public void resize(){ method in class:XMLDocumentFragmentScannerImpl.ElementStack2
2122 //resize QNames
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/
H A DDTDGrammar.java2406 // resize arrays, if needed
2460 fElementDeclIsExternal = resize(fElementDeclIsExternal,
2463 fElementDeclName = resize(fElementDeclName, fElementDeclName.length * 2);
2464 fElementDeclType = resize(fElementDeclType, fElementDeclType.length * 2);
2465 fElementDeclContentModelValidator = resize(fElementDeclContentModelValidator, fElementDeclContentModelValidator.length * 2);
2466 fElementDeclContentSpecIndex = resize(fElementDeclContentSpecIndex,fElementDeclContentSpecIndex.length * 2);
2467 fElementDeclFirstAttributeDeclIndex = resize(fElementDeclFirstAttributeDeclIndex, fElementDeclFirstAttributeDeclIndex.length * 2);
2468 fElementDeclLastAttributeDeclIndex = resize(fElementDeclLastAttributeDeclIndex, fElementDeclLastAttributeDeclIndex.length * 2);
2487 fAttributeDeclIsExternal = resize(fAttributeDeclIsExternal,
2489 fAttributeDeclName = resize(fAttributeDeclNam
2580 private static byte[][] resize(byte array[][], int newsize) { method in class:DTDGrammar
2586 private static short[][] resize(short array[][], int newsize) { method in class:DTDGrammar
2592 private static int[][] resize(int array[][], int newsize) { method in class:DTDGrammar
2598 private static DatatypeValidator[][] resize(DatatypeValidator array[][], int newsize) { method in class:DTDGrammar
2604 private static ContentModelValidator[][] resize(ContentModelValidator array[][], int newsize) { method in class:DTDGrammar
2610 private static Object[][] resize(Object array[][], int newsize) { method in class:DTDGrammar
2616 private static QName[][] resize(QName array[][], int newsize) { method in class:DTDGrammar
2622 private static String[][] resize(String array[][], int newsize) { method in class:DTDGrammar
2628 private static String[][][] resize(String array[][][], int newsize) { method in class:DTDGrammar
[all...]

Completed in 160 milliseconds

123