• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/

Lines Matching defs:hdlr

2741  * @hdlr:  the SAX handler
2749 xmlSAXVersion(xmlSAXHandler *hdlr, int version)
2751 if (hdlr == NULL) return(-1);
2753 hdlr->startElement = NULL;
2754 hdlr->endElement = NULL;
2755 hdlr->startElementNs = xmlSAX2StartElementNs;
2756 hdlr->endElementNs = xmlSAX2EndElementNs;
2757 hdlr->serror = NULL;
2758 hdlr->initialized = XML_SAX2_MAGIC;
2761 hdlr->startElement = xmlSAX2StartElement;
2762 hdlr->endElement = xmlSAX2EndElement;
2763 hdlr->initialized = 1;
2767 hdlr->internalSubset = xmlSAX2InternalSubset;
2768 hdlr->externalSubset = xmlSAX2ExternalSubset;
2769 hdlr->isStandalone = xmlSAX2IsStandalone;
2770 hdlr->hasInternalSubset = xmlSAX2HasInternalSubset;
2771 hdlr->hasExternalSubset = xmlSAX2HasExternalSubset;
2772 hdlr->resolveEntity = xmlSAX2ResolveEntity;
2773 hdlr->getEntity = xmlSAX2GetEntity;
2774 hdlr->getParameterEntity = xmlSAX2GetParameterEntity;
2775 hdlr->entityDecl = xmlSAX2EntityDecl;
2776 hdlr->attributeDecl = xmlSAX2AttributeDecl;
2777 hdlr->elementDecl = xmlSAX2ElementDecl;
2778 hdlr->notationDecl = xmlSAX2NotationDecl;
2779 hdlr->unparsedEntityDecl = xmlSAX2UnparsedEntityDecl;
2780 hdlr->setDocumentLocator = xmlSAX2SetDocumentLocator;
2781 hdlr->startDocument = xmlSAX2StartDocument;
2782 hdlr->endDocument = xmlSAX2EndDocument;
2783 hdlr->reference = xmlSAX2Reference;
2784 hdlr->characters = xmlSAX2Characters;
2785 hdlr->cdataBlock = xmlSAX2CDataBlock;
2786 hdlr->ignorableWhitespace = xmlSAX2Characters;
2787 hdlr->processingInstruction = xmlSAX2ProcessingInstruction;
2788 hdlr->comment = xmlSAX2Comment;
2789 hdlr->warning = xmlParserWarning;
2790 hdlr->error = xmlParserError;
2791 hdlr->fatalError = xmlParserError;
2798 * @hdlr: the SAX handler
2804 xmlSAX2InitDefaultSAXHandler(xmlSAXHandler *hdlr, int warning)
2806 if ((hdlr == NULL) || (hdlr->initialized != 0))
2809 xmlSAXVersion(hdlr, xmlSAX2DefaultVersionValue);
2811 hdlr->warning = NULL;
2813 hdlr->warning = xmlParserWarning;
2833 * @hdlr: the SAX handler
2838 xmlSAX2InitHtmlDefaultSAXHandler(xmlSAXHandler *hdlr)
2840 if ((hdlr == NULL) || (hdlr->initialized != 0))
2843 hdlr->internalSubset = xmlSAX2InternalSubset;
2844 hdlr->externalSubset = NULL;
2845 hdlr->isStandalone = NULL;
2846 hdlr->hasInternalSubset = NULL;
2847 hdlr->hasExternalSubset = NULL;
2848 hdlr->resolveEntity = NULL;
2849 hdlr->getEntity = xmlSAX2GetEntity;
2850 hdlr->getParameterEntity = NULL;
2851 hdlr->entityDecl = NULL;
2852 hdlr->attributeDecl = NULL;
2853 hdlr->elementDecl = NULL;
2854 hdlr->notationDecl = NULL;
2855 hdlr->unparsedEntityDecl = NULL;
2856 hdlr->setDocumentLocator = xmlSAX2SetDocumentLocator;
2857 hdlr->startDocument = xmlSAX2StartDocument;
2858 hdlr->endDocument = xmlSAX2EndDocument;
2859 hdlr->startElement = xmlSAX2StartElement;
2860 hdlr->endElement = xmlSAX2EndElement;
2861 hdlr->reference = NULL;
2862 hdlr->characters = xmlSAX2Characters;
2863 hdlr->cdataBlock = xmlSAX2CDataBlock;
2864 hdlr->ignorableWhitespace = xmlSAX2IgnorableWhitespace;
2865 hdlr->processingInstruction = xmlSAX2ProcessingInstruction;
2866 hdlr->comment = xmlSAX2Comment;
2867 hdlr->warning = xmlParserWarning;
2868 hdlr->error = xmlParserError;
2869 hdlr->fatalError = xmlParserError;
2871 hdlr->initialized = 1;
2891 * @hdlr: the SAX handler
2896 xmlSAX2InitDocbDefaultSAXHandler(xmlSAXHandler *hdlr)
2898 if ((hdlr == NULL) || (hdlr->initialized != 0))
2901 hdlr->internalSubset = xmlSAX2InternalSubset;
2902 hdlr->externalSubset = NULL;
2903 hdlr->isStandalone = xmlSAX2IsStandalone;
2904 hdlr->hasInternalSubset = xmlSAX2HasInternalSubset;
2905 hdlr->hasExternalSubset = xmlSAX2HasExternalSubset;
2906 hdlr->resolveEntity = xmlSAX2ResolveEntity;
2907 hdlr->getEntity = xmlSAX2GetEntity;
2908 hdlr->getParameterEntity = NULL;
2909 hdlr->entityDecl = xmlSAX2EntityDecl;
2910 hdlr->attributeDecl = NULL;
2911 hdlr->elementDecl = NULL;
2912 hdlr->notationDecl = NULL;
2913 hdlr->unparsedEntityDecl = NULL;
2914 hdlr->setDocumentLocator = xmlSAX2SetDocumentLocator;
2915 hdlr->startDocument = xmlSAX2StartDocument;
2916 hdlr->endDocument = xmlSAX2EndDocument;
2917 hdlr->startElement = xmlSAX2StartElement;
2918 hdlr->endElement = xmlSAX2EndElement;
2919 hdlr->reference = xmlSAX2Reference;
2920 hdlr->characters = xmlSAX2Characters;
2921 hdlr->cdataBlock = NULL;
2922 hdlr->ignorableWhitespace = xmlSAX2IgnorableWhitespace;
2923 hdlr->processingInstruction = NULL;
2924 hdlr->comment = xmlSAX2Comment;
2925 hdlr->warning = xmlParserWarning;
2926 hdlr->error = xmlParserError;
2927 hdlr->fatalError = xmlParserError;
2929 hdlr->initialized = 1;