Searched refs:CDATA (Results 51 - 64 of 64) sorted by relevance

123

/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DParser.java1378 attvalue = parseAttributeValue((att != null) && (att.type != CDATA) && (att.type != NOTATION) && (att.type != NAME));
1379 // attvalue = parseAttributeValue((att != null) && (att.type != CDATA) && (att.type != NOTATION));
1412 (att.type != CDATA) &&
1436 (att.type != CDATA) &&
1960 case CDATA:
H A DDTD.java181 case CDATA:
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/jaxws/
H A DSafePolicyReader.java254 case XMLStreamConstants.CDATA:
256 .append("<![CDATA[") // append CDATA delimiters
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/stream/buffer/stax/
H A DStreamReaderBufferProcessor.java364 || eventType == CDATA
394 || (eventType == CDATA && isWhiteSpace())
426 if(isCharacters() || (_eventType == CDATA)){
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DStAXEvent2SAX.java223 case XMLStreamConstants.CDATA :
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/fastinfoset/sax/helpers/
H A DEncodingAlgorithmAttributesImpl.java245 _data[i++] = "CDATA";
284 _data[i++] = "CDATA";
578 } else if (identifier == EncodingAlgorithmIndexes.CDATA) {
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/msg/
H A DDOMMessages_ja.properties68 cdata-sections-splitted = CDATA\u30BB\u30AF\u30B7\u30E7\u30F3\u306BCDATA\u30BB\u30AF\u30B7\u30E7\u30F3\u7D42\u4E86\u30DE\u30FC\u30AB\u30FC'']]>''\u304C\u542B\u307E\u308C\u3066\u3044\u307E\u3059
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/
H A DEncoder.java1432 case EncodingAlgorithmIndexes.CDATA:
1433 throw new UnsupportedOperationException(CommonResourceBundle.getInstance().getString("message.CDATA"));
1635 case EncodingAlgorithmIndexes.CDATA:
1636 throw new UnsupportedOperationException(CommonResourceBundle.getInstance().getString("message.CDATA"));
1760 * using the CDATA built in encoding algorithm.
1772 _b = EncodingAlgorithmIndexes.CDATA << 2;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/sax/
H A DSAXDocumentParser.java1556 } else if (_identifier == EncodingAlgorithmIndexes.CDATA) {
1723 case EncodingAlgorithmIndexes.CDATA:
1724 throw new UnsupportedOperationException("CDATA");
1765 } else if (_identifier == EncodingAlgorithmIndexes.CDATA) {
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DDOMNormalizer.java89 * The tree might not be validated correctly if entityReferences, CDATA sections are
513 if ((fConfiguration.features & DOMConfigurationImpl.CDATA) == 0) {
514 // convert CDATA to TEXT nodes
530 // send characters call for CDATA
617 ((fConfiguration.features & DOMConfigurationImpl.CDATA) == 0) &&
1076 * Check if CDATA section is well-formed
1581 return "CDATA";
1586 return "CDATA";
1591 return "CDATA";
2004 * The start of a CDATA sectio
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXMLDocumentFragmentScannerImpl.java136 /** Scanner state: CDATA section. */
484 case XMLStreamConstants.CDATA:
486 //xxx: check if CDATA values comes from getCharacterData() function
489 //System.out.println(" in CDATA of the XMLNSDocumentScannerImpl");
1632 * Scans a CDATA section.
1637 * @param complete True if the CDATA section is to be scanned
1640 * @return True if CDATA is completely scanned.
2724 //if we dont encounter any CDATA or ENITY REFERENCE and current state is also not SCANNER_STATE_CHARACTER_DATA
2731 }//if last section was CDATA or ENTITY REFERENCE
2732 //xxx: there might be another entity reference or CDATA afte
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/dom/
H A DDOMDocumentParser.java1037 } else if (_identifier == EncodingAlgorithmIndexes.CDATA) {
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serialize/
H A DBaseMarkupSerializer.java504 // Check if text should be print as CDATA section or unescaped
506 // state) or whether we are inside a CDATA section or entity.
511 // Print a CDATA section. The text is not escaped, but ']]>'
515 _printer.printText( "<![CDATA[" );
526 _printer.printText("]]]]><![CDATA[>");
544 // The character is not printable -- split CDATA section
547 _printer.printText(";<![CDATA[");
1051 if ((features & DOMSerializerImpl.CDATA) != 0) {
1062 // skip the CDATA node
1412 * Since this method is capable of printing text as CDATA, i
[all...]
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DXMLKit.java2137 On input, never split CDATA blocks. They remain single tokens.
2138 ?Try to treat encoded characters as CDATA-quoted, also?
3912 atts.addAttribute("", "", key, "CDATA", val);
4134 String begCData = "<![CDATA[";

Completed in 118 milliseconds

123