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

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/identity/
H A DIdentityConstraint.java70 protected int fNumAnnotations; field in class:IdentityConstraint
226 return new XSObjectListImpl(fAnnotations, fNumAnnotations);
242 } else if(fNumAnnotations == fAnnotations.length) {
243 XSAnnotationImpl[] newArray = new XSAnnotationImpl[fNumAnnotations << 1];
244 System.arraycopy(fAnnotations, 0, newArray, 0, fNumAnnotations);
247 fAnnotations[fNumAnnotations++] = annotation;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXSModelImpl.java634 totalAnnotations += fGrammarList[i].fNumAnnotations;
644 if (currGrammar.fNumAnnotations > 0) {
645 System.arraycopy(currGrammar.fAnnotations, 0, annotations, currPos, currGrammar.fNumAnnotations);
646 currPos += currGrammar.fNumAnnotations;
H A DSchemaGrammar.java117 int fNumAnnotations; field in class:SchemaGrammar
208 fNumAnnotations = grammar.fNumAnnotations;
209 if (fNumAnnotations > 0) {
211 System.arraycopy(grammar.fAnnotations, 0, fAnnotations, 0, fNumAnnotations);
1659 if (fNumAnnotations == 0) {
1662 return new XSObjectListImpl(fAnnotations, fNumAnnotations);
1672 else if (fNumAnnotations == fAnnotations.length) {
1673 XSAnnotationImpl[] newArray = new XSAnnotationImpl[fNumAnnotations << 1];
1674 System.arraycopy(fAnnotations, 0, newArray, 0, fNumAnnotations);
[all...]

Completed in 36 milliseconds