Searched refs:INITIAL_CHUNK_COUNT (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXSDeclarationPool.java49 private static final int INITIAL_CHUNK_COUNT = (1 << (10 - CHUNK_SHIFT)); // 2^10 = 1k field in class:XSDeclarationPool
52 private XSElementDecl fElementDecl[][] = new XSElementDecl[INITIAL_CHUNK_COUNT][];
56 private XSParticleDecl fParticleDecl[][] = new XSParticleDecl[INITIAL_CHUNK_COUNT][];
60 private XSModelGroupImpl fModelGroup[][] = new XSModelGroupImpl[INITIAL_CHUNK_COUNT][];
64 private XSAttributeDecl fAttrDecl[][] = new XSAttributeDecl[INITIAL_CHUNK_COUNT][];
68 private XSComplexTypeDecl fCTDecl[][] = new XSComplexTypeDecl[INITIAL_CHUNK_COUNT][];
72 private XSSimpleTypeDecl fSTDecl[][] = new XSSimpleTypeDecl[INITIAL_CHUNK_COUNT][];
76 private XSAttributeUseImpl fAttributeUse[][] = new XSAttributeUseImpl[INITIAL_CHUNK_COUNT][];
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DCaseInsensitiveMap.java33 private static int INITIAL_CHUNK_COUNT = 64; /* up to 0xFFFF */ field in class:CaseInsensitiveMap
65 caseInsensitiveMap = new int[INITIAL_CHUNK_COUNT][][];
66 for (int i=0; i<INITIAL_CHUNK_COUNT; i++) {
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/
H A DDTDGrammar.java128 private static final int INITIAL_CHUNK_COUNT = (1 << (10 - CHUNK_SHIFT)); // 2^10 = 1k field in class:DTDGrammar
169 private QName fElementDeclName[][] = new QName[INITIAL_CHUNK_COUNT][];
175 private short fElementDeclType[][] = new short[INITIAL_CHUNK_COUNT][];
181 private int fElementDeclContentSpecIndex[][] = new int[INITIAL_CHUNK_COUNT][];
187 private ContentModelValidator fElementDeclContentModelValidator[][] = new ContentModelValidator[INITIAL_CHUNK_COUNT][];
190 private int fElementDeclFirstAttributeDeclIndex[][] = new int[INITIAL_CHUNK_COUNT][];
193 private int fElementDeclLastAttributeDeclIndex[][] = new int[INITIAL_CHUNK_COUNT][];
201 private QName fAttributeDeclName[][] = new QName[INITIAL_CHUNK_COUNT][];
210 private short fAttributeDeclType[][] = new short[INITIAL_CHUNK_COUNT][];
213 private String[] fAttributeDeclEnumeration[][] = new String[INITIAL_CHUNK_COUNT][][];
[all...]
/openjdk7/jaxp/src/com/sun/xml/internal/stream/dtd/nonvalidating/
H A DDTDGrammar.java67 private static final int INITIAL_CHUNK_COUNT = (1 << (10 - CHUNK_SHIFT)); // 2^10 = 1k field in class:DTDGrammar
106 private QName fElementDeclName[][] = new QName[INITIAL_CHUNK_COUNT][];
112 private short fElementDeclType[][] = new short[INITIAL_CHUNK_COUNT][];
116 private int fElementDeclFirstAttributeDeclIndex[][] = new int[INITIAL_CHUNK_COUNT][];
119 private int fElementDeclLastAttributeDeclIndex[][] = new int[INITIAL_CHUNK_COUNT][];
127 private QName fAttributeDeclName[][] = new QName[INITIAL_CHUNK_COUNT][];
133 private short fAttributeDeclType[][] = new short[INITIAL_CHUNK_COUNT][];
136 private String[] fAttributeDeclEnumeration[][] = new String[INITIAL_CHUNK_COUNT][][];
137 private short fAttributeDeclDefaultType[][] = new short[INITIAL_CHUNK_COUNT][];
138 private String fAttributeDeclDefaultValue[][] = new String[INITIAL_CHUNK_COUNT][];
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DDeferredDocumentImpl.java80 protected static final int INITIAL_CHUNK_COUNT = (1 << (13 - CHUNK_SHIFT)); // 32 field in class:DeferredDocumentImpl
1784 fNodeType = new int[INITIAL_CHUNK_COUNT][];
1785 fNodeName = new Object[INITIAL_CHUNK_COUNT][];
1786 fNodeValue = new Object[INITIAL_CHUNK_COUNT][];
1787 fNodeParent = new int[INITIAL_CHUNK_COUNT][];
1788 fNodeLastChild = new int[INITIAL_CHUNK_COUNT][];
1789 fNodePrevSib = new int[INITIAL_CHUNK_COUNT][];
1790 fNodeURI = new Object[INITIAL_CHUNK_COUNT][];
1791 fNodeExtra = new int[INITIAL_CHUNK_COUNT][];

Completed in 2523 milliseconds