Searched defs:INITIAL_SIZE (Results 1 - 11 of 11) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/utils/
H A DUnsyncByteArrayOutputStream.java31 private static final int INITIAL_SIZE = 8192; field in class:UnsyncByteArrayOutputStream
34 return new byte[INITIAL_SIZE];
39 private int size = INITIAL_SIZE;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/
H A DCacheTable.java50 static final int INITIAL_SIZE = 16; field in class:CacheTable
67 size = INITIAL_SIZE;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXSAttributeGroupDecl.java53 private static final int INITIAL_SIZE = 5; field in class:XSAttributeGroupDecl
54 XSAttributeUseImpl[] fAttributeUses = new XSAttributeUseImpl[INITIAL_SIZE];
H A DXSElementDecl.java78 static final int INITIAL_SIZE = 2; field in class:XSElementDecl
80 IdentityConstraint[] fIDConstraints = new IdentityConstraint[INITIAL_SIZE];
H A DSchemaGrammar.java1059 private static final int INITIAL_SIZE = 16; field in class:SchemaGrammar
1063 private XSComplexTypeDecl[] fComplexTypeDecls = new XSComplexTypeDecl[INITIAL_SIZE];
1064 private SimpleLocator[] fCTLocators = new SimpleLocator[INITIAL_SIZE];
1160 private XSElementDecl[] fSubGroups = new XSElementDecl[INITIAL_SIZE];
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DStyledParagraph.java86 private static int INITIAL_SIZE = 8; field in class:StyledParagraph
377 decorations = new Vector(INITIAL_SIZE);
380 decorationStarts = new int[INITIAL_SIZE];
401 fonts = new Vector(INITIAL_SIZE);
404 fontStarts = new int[INITIAL_SIZE];
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DScope.java86 private static final int INITIAL_SIZE = 0x10; field in class:Scope
110 * using a fresh table of length INITIAL_SIZE.
113 this(null, owner, new Entry[INITIAL_SIZE]);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DMultiDOM.java51 private static final int INITIAL_SIZE = 4; field in class:MultiDOM
246 _size = INITIAL_SIZE;
248 _adapters = new DOM[INITIAL_SIZE];
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xinclude/
H A DXPointerElementHandler.java157 private static final int INITIAL_SIZE = 8; field in class:XPointerElementHandler
164 private boolean[] fSawInclude = new boolean[INITIAL_SIZE];
170 private boolean[] fSawFallback = new boolean[INITIAL_SIZE];
174 private int[] fState = new int[INITIAL_SIZE];
H A DXIncludeHandler.java330 private static final int INITIAL_SIZE = 8; field in class:XIncludeHandler
336 private boolean[] fSawInclude = new boolean[INITIAL_SIZE];
341 private boolean[] fSawFallback = new boolean[INITIAL_SIZE];
344 private int[] fState = new int[INITIAL_SIZE];
/openjdk7/jdk/src/solaris/classes/sun/awt/
H A DX11InputMethod.java621 composedText = new StringBuffer(INITIAL_SIZE);
622 rawFeedbacks = new IntBuffer(INITIAL_SIZE);
631 composedText = new StringBuffer(INITIAL_SIZE);
632 rawFeedbacks = new IntBuffer(INITIAL_SIZE);
1012 private static final int INITIAL_SIZE = 64; field in class:X11InputMethod

Completed in 59 milliseconds