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

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DSchemaGrammar.java224 fComplexTypeDecls = new XSComplexTypeDecl[grammar.fComplexTypeDecls.length];
226 System.arraycopy(grammar.fComplexTypeDecls, 0, fComplexTypeDecls, 0, fCTCount);
1063 private XSComplexTypeDecl[] fComplexTypeDecls = new XSComplexTypeDecl[INITIAL_SIZE]; field in class:SchemaGrammar
1081 if (fCTCount == fComplexTypeDecls.length) {
1082 fComplexTypeDecls = resize(fComplexTypeDecls, fCTCount+INC_SIZE);
1086 fComplexTypeDecls[fCTCount++] = decl;
1107 if (fCTCount < fComplexTypeDecls
[all...]

Completed in 31 milliseconds