Home
last modified time | relevance | path

Searched refs:AttributesImpl (Results 1 – 13 of 13) sorted by relevance

/external/tagsoup/src/org/ccil/cowan/tagsoup/
DElement.java27 private AttributesImpl theAtts; // attributes of element
39 if (defaultAttributes) theAtts = new AttributesImpl(type.atts()); in Element()
40 else theAtts = new AttributesImpl(); in Element()
58 public AttributesImpl atts() { return theAtts; } in atts()
DElementType.java31 private AttributesImpl theAtts; // default attributes
55 theAtts = new AttributesImpl(); in ElementType()
150 public AttributesImpl atts() {return theAtts;} in atts()
189 public void setAttribute(AttributesImpl atts, String name, String type, String value) { in setAttribute()
DAttributesImpl.java54 public class AttributesImpl implements Attributes class
66 public AttributesImpl () in AttributesImpl() method in AttributesImpl
81 public AttributesImpl (Attributes atts) in AttributesImpl() method in AttributesImpl
DXMLWriter.java28 import org.xml.sax.helpers.AttributesImpl;
1395 private final Attributes EMPTY_ATTS = new AttributesImpl();
/external/apache-xml/src/main/java/org/apache/xalan/processor/
DProcessorLRE.java43 import org.xml.sax.helpers.AttributesImpl;
117 AttributesImpl stylesheetAttrs = new AttributesImpl(); in startElement()
118 AttributesImpl lreAttrs = new AttributesImpl(); in startElement()
DXSLTElementProcessor.java35 import org.xml.sax.helpers.AttributesImpl;
292 AttributesImpl undefines = null; in setPropertiesFromAttributes()
297 undefines = new AttributesImpl(); in setPropertiesFromAttributes()
/external/apache-xml/src/main/java/org/apache/xml/serializer/
DAttributesImplSerializer.java27 import org.xml.sax.helpers.AttributesImpl;
39 public final class AttributesImplSerializer extends AttributesImpl
/external/python/cpython2/Lib/xml/sax/
Dxmlreader.py276 class AttributesImpl: class
341 class AttributesNSImpl(AttributesImpl):
Dexpatreader.py30 AttributesImpl = xmlreader.AttributesImpl variable
317 self._cont_handler.startElement(name, AttributesImpl(attrs))
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DDTMTreeWalker.java264 org.xml.sax.helpers.AttributesImpl attrs = in startNode()
265 new org.xml.sax.helpers.AttributesImpl(); in startNode()
/external/python/cpython2/Doc/library/
Dxml.sax.reader.rst71 .. class:: AttributesImpl(attrs)
84 Namespace-aware variant of :class:`AttributesImpl`, which will be passed to
85 :meth:`startElementNS`. It is derived from :class:`AttributesImpl`, but
/external/python/cpython2/Lib/test/
Dtest_sax.py15 from xml.sax.xmlreader import InputSource, AttributesImpl, AttributesNSImpl
984 self.verify_empty_attrs(AttributesImpl({}))
987 self.verify_attrs_wattr(AttributesImpl({"attr" : "val"}))
/external/libxml2/python/
Ddrv_libxml2.py164 attributesImpl = xmlreader.AttributesImpl({})