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

/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serialize/
H A DDOMSerializerImpl.java104 protected final static short WELLFORMED = 0x1<<1; field in class:DOMSerializerImpl
135 features |= WELLFORMED;
167 features |= WELLFORMED;
193 ? features | WELLFORMED
194 : features & ~WELLFORMED);
408 return (features & WELLFORMED) != 0 ? Boolean.TRUE : Boolean.FALSE;
423 (features & WELLFORMED) != 0 &&
1030 if ((features & WELLFORMED) != 0) {
H A DXML11Serializer.java308 && (features & DOMSerializerImpl.WELLFORMED) == 0) {
H A DBaseMarkupSerializer.java1540 if ((features & DOMSerializerImpl.WELLFORMED) != 0) {
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DDOMConfigurationImpl.java183 protected final static short WELLFORMED = 0x1<<8; field in class:DOMConfigurationImpl
186 protected final static short INFOSET_TRUE_PARAMS = NAMESPACES | COMMENTS | WELLFORMED | NSDECL;
297 features |= WELLFORMED;
596 features = (short) (state ? features | WELLFORMED : features & ~WELLFORMED );
830 return (features & WELLFORMED) != 0 ? Boolean.TRUE : Boolean.FALSE;
H A DDOMNormalizer.java303 if ( ((fConfiguration.features & DOMConfigurationImpl.WELLFORMED) != 0) &&
355 if (fDocument.errorChecking && ((fConfiguration.features & DOMConfigurationImpl.WELLFORMED) != 0)){
468 if (fDocument.errorChecking && ((fConfiguration.features & DOMConfigurationImpl.WELLFORMED) != 0)){
498 if (fDocument.errorChecking && ((fConfiguration.features & DOMConfigurationImpl.WELLFORMED) != 0) &&
619 if (fDocument.errorChecking && ((fConfiguration.features & DOMConfigurationImpl.WELLFORMED) != 0) ){
657 if (fDocument.errorChecking && (fConfiguration.features & DOMConfigurationImpl.WELLFORMED) != 0 ) {
758 if (fDocument.errorChecking && ((fConfiguration.features & DOMConfigurationImpl.WELLFORMED) != 0) &&
928 if (fDocument.errorChecking && ((fConfiguration.features & DOMConfigurationImpl.WELLFORMED) != 0)) {

Completed in 46 milliseconds