HomeSort by relevance Sort by last modified time
    Searched refs:attributeDecl (Results 1 - 21 of 21) sorted by null

  /dalvik/libcore/xml/src/main/java/org/xml/sax/ext/
DeclHandler.java 96 public abstract void attributeDecl (String eName,
DefaultHandler2.java 77 public void attributeDecl (String eName, String aName,
  /external/libxml2/
SAX.c 57 hdlr->attributeDecl = xmlSAX2AttributeDecl;
105 hdlr->attributeDecl = NULL;
152 hdlr->attributeDecl = NULL;
legacy.c 112 "SAX function attributeDecl",
221 } else if (!strcmp(name, "SAX function attributeDecl")) {
222 *((attributeDeclSAXFunc *) result) = ctxt->sax->attributeDecl;
339 } else if (!strcmp(name, "SAX function attributeDecl")) {
340 ctxt->sax->attributeDecl = *((attributeDeclSAXFunc *) value);
983 * attributeDecl:
996 attributeDecl(void *ctx, const xmlChar * elem, const xmlChar * fullname,
1000 DEPRECATED("attributeDecl")
    [all...]
SAX2.c     [all...]
xmlschemas.c     [all...]
  /dalvik/libcore/xml/src/test/java/tests/api/org/xml/sax/ext/
DefaultHandler2Test.java 137 method = "attributeDecl",
143 h.attributeDecl("eName", "aName", "type", "mode", "value");
  /external/libxml2/include/libxml/
SAX.h 75 attributeDecl (void *ctx,
parser.h 717 attributeDeclSAXFunc attributeDecl;
758 attributeDeclSAXFunc attributeDecl;
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xalan/transformer/
TransformerHandlerImpl.java 967 public void attributeDecl(
973 System.out.println("TransformerHandlerImpl#attributeDecl: " + eName
978 m_declHandler.attributeDecl(eName, aName, type, valueDefault, value);