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

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DSecurityManager.java108 private int fElementAttributeLimit; field in class:SecurityManager
118 fElementAttributeLimit = DEFAULT_ELEMENT_ATTRIBUTE_LIMIT;
173 return fElementAttributeLimit;
177 fElementAttributeLimit = limit;
208 fElementAttributeLimit = Integer.parseInt(value);
209 if ( fElementAttributeLimit < 0)
210 fElementAttributeLimit = DEFAULT_ELEMENT_ATTRIBUTE_LIMIT;
213 fElementAttributeLimit = DEFAULT_ELEMENT_ATTRIBUTE_LIMIT;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXML11NSDocumentScannerImpl.java239 if (fSecurityManager != null && fAttributes.getLength() > fElementAttributeLimit){
242 new Object[]{rawname, new Integer(fElementAttributeLimit) },
H A DXMLNSDocumentScannerImpl.java254 if (fSecurityManager != null && fAttributes.getLength() > fElementAttributeLimit){
H A DXMLDocumentFragmentScannerImpl.java89 protected int fElementAttributeLimit; field in class:XMLDocumentFragmentScannerImpl
573 fElementAttributeLimit = (fSecurityManager != null)?fSecurityManager.getElementAttrLimit():0;
1320 if (fSecurityManager != null && fAttributes.getLength() > fElementAttributeLimit){

Completed in 40 milliseconds