Searched defs:fAttrDecl (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXSAttributeUseImpl.java44 public XSAttributeDecl fAttrDecl = null; field in class:XSAttributeUseImpl
56 fAttrDecl = null;
100 return fAttrDecl;
H A DXSDeclarationPool.java64 private XSAttributeDecl fAttrDecl[][] = new XSAttributeDecl[INITIAL_CHUNK_COUNT][]; field in class:XSDeclarationPool
101 if (fAttrDecl[chunk][index] == null) {
102 fAttrDecl[chunk][index] = new XSAttributeDecl();
104 fAttrDecl[chunk][index].reset();
107 return fAttrDecl[chunk][index];
237 if (chunk >= fAttrDecl.length) {
238 fAttrDecl = resize(fAttrDecl, fAttrDecl.length * 2);
239 } else if (fAttrDecl[chun
[all...]

Completed in 31 milliseconds