Searched defs:xml11Version (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serialize/
H A DDOMSerializerImpl.java1077 private void verify (Node node, boolean verifyNames, boolean xml11Version){ argument
1092 wellformed = CoreDocumentImpl.isValidQName(node.getPrefix() , node.getLocalName(), xml11Version) ;
1095 wellformed = CoreDocumentImpl.isXMLName(node.getNodeName() , xml11Version);
1118 attributes, attr, attr.getValue(), xml11Version);
1120 wellformed = CoreDocumentImpl.isXMLName( attr.getNodeName(), xml11Version);
1141 DOMNormalizer.isCommentWF(fErrorHandler, fError, fLocator, ((Comment)node).getData(), xml11Version);
1147 CoreDocumentImpl.isXMLName(node.getNodeName() , xml11Version);
1154 DOMNormalizer.isXMLCharWF(fErrorHandler, fError, fLocator, node.getNodeValue(), xml11Version);
1159 DOMNormalizer.isXMLCharWF(fErrorHandler, fError, fLocator, node.getNodeValue(), xml11Version);
1166 if (xml11Version) {
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DDOMNormalizer.java1317 DOMLocatorImpl locator, NamedNodeMap attributes, Attr a, String value, boolean xml11Version) {
1319 isXMLCharWF(errorHandler, error, locator, value, xml11Version);
1351 isXMLCharWF(errorHandler, error, locator, child.getNodeValue(), xml11Version);
1316 isAttrValueWF(DOMErrorHandler errorHandler, DOMErrorImpl error, DOMLocatorImpl locator, NamedNodeMap attributes, Attr a, String value, boolean xml11Version) argument
H A DCoreDocumentImpl.java211 private boolean xml11Version = false; //by default 1.0 field in class:CoreDocumentImpl
562 if (errorChecking && !isXMLName(name,xml11Version)) {
620 if (errorChecking && !isXMLName(tagName,xml11Version)) {
641 if (errorChecking && !isXMLName(name,xml11Version)) {
666 if (errorChecking && !isXMLName(target,xml11Version)) {
879 xml11Version = true;
882 xml11Version = false;
1001 if (!isXMLName(name,xml11Version)) {
1402 if (errorChecking && !isXMLName(name,xml11Version)) {
1425 if (errorChecking && !isXMLName(name,xml11Version)) {
2209 isXMLName(String s, boolean xml11Version) argument
2228 isValidQName(String prefix, String local, boolean xml11Version) argument
[all...]

Completed in 42 milliseconds