HomeSort by relevance Sort by last modified time
    Searched defs:CDATA (Results 1 - 6 of 6) sorted by null

  /libcore/luni/src/main/java/org/apache/harmony/xml/
ExpatAttributes.java 27 * Since we don't do validation, pretty much everything is CDATA type.
29 private static final String CDATA = "CDATA";
68 return (index < 0 || index >= getLength()) ? null : CDATA;
109 return getIndex(uri, localName) == -1 ? null : CDATA;
113 return getIndex(qName) == -1 ? null : CDATA;
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ElemDesc.java 59 /** Bit position if this element type is CDATA. */
60 private static final int CDATA = (1 << 6);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
LSSerializerImpl.java 124 // Parameter cdata-sections, true [required] (default)
125 private final static int CDATA = 0x1 << 1;
154 // Parameter split-cdata-sections, true [required] (default)
163 // Parameter split-cdata-sections, true [required] (default)
215 fFeatures |= CDATA;
258 // cdata-sections
342 // split-cdata-sections
441 return ((fFeatures & CDATA) != 0) ? Boolean.TRUE : Boolean.FALSE;
473 (fFeatures & CDATA) == 0 &&
535 fFeatures = state ? fFeatures | CDATA : fFeatures
    [all...]
DOM3TreeWalker.java 144 // Parameter cdata-sections, true [required] (default)
145 private final static int CDATA = 0x1 << 1;
174 // Parameter split-cdata-sections, true [required] (default)
183 // Parameter split-cdata-sections, true [required] (default)
680 type = type == null ? "CDATA" : type;
743 XMLNS_PREFIX + ":" + attrPrefix, "CDATA",
767 XMLNS_PREFIX + ":" + attrPrefix, "CDATA",
    [all...]
  /external/tinyxml/
tinyxml.h 1111 bool cdata; \/\/ true if this should be input and output as a CDATA style text element member in class:TiXmlText
    [all...]
  /external/jdiff/
xerces.jar 

Completed in 957 milliseconds