Searched defs:NSDECL (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serialize/
H A DDOMSerializerImpl.java112 protected final static short NSDECL = 0x1<<9; field in class:DOMSerializerImpl
136 features |= NSDECL;
166 features |= NSDECL;
239 ? features | NSDECL
240 : features & ~NSDECL);
410 return (features & NSDECL) != 0 ? Boolean.TRUE : Boolean.FALSE;
422 (features & NSDECL) != 0 &&
1025 ser.fNamespacePrefixes = (features & NSDECL) != 0;
/openjdk7/jaxp/src/org/xml/sax/helpers/
H A DNamespaceSupport.java133 public final static String NSDECL = field in class:NamespaceSupport
496 * into the {@link #NSDECL NSDECL} namespace
513 currentContext.declarePrefix ("xmlns", NSDECL);
684 name[0] = NSDECL;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/
H A DNamespaceSupport.java133 public final static String NSDECL = field in class:NamespaceSupport
496 * into the {@link #NSDECL NSDECL} namespace
513 currentContext.declarePrefix ("xmlns", NSDECL);
680 name[0] = NSDECL;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DDOMConfigurationImpl.java184 protected final static short NSDECL = 0x1<<9; field in class:DOMConfigurationImpl
186 protected final static short INFOSET_TRUE_PARAMS = NAMESPACES | COMMENTS | WELLFORMED | NSDECL;
298 features |= NSDECL;
599 features = (short) (state ? features | NSDECL : features & ~NSDECL);
833 return (features & NSDECL) != 0 ? Boolean.TRUE : Boolean.FALSE;

Completed in 45 milliseconds