Home | History | Annotate | Download | only in libxml2

Lines Matching full:hdlr

2841  * @hdlr:  the SAX handler
2849 xmlSAXVersion(xmlSAXHandler *hdlr, int version)
2851 if (hdlr == NULL) return(-1);
2853 hdlr->startElement = NULL;
2854 hdlr->endElement = NULL;
2855 hdlr->startElementNs = xmlSAX2StartElementNs;
2856 hdlr->endElementNs = xmlSAX2EndElementNs;
2857 hdlr->serror = NULL;
2858 hdlr->initialized = XML_SAX2_MAGIC;
2861 hdlr->startElement = xmlSAX2StartElement;
2862 hdlr->endElement = xmlSAX2EndElement;
2863 hdlr->initialized = 1;
2867 hdlr->internalSubset = xmlSAX2InternalSubset;
2868 hdlr->externalSubset = xmlSAX2ExternalSubset;
2869 hdlr->isStandalone = xmlSAX2IsStandalone;
2870 hdlr->hasInternalSubset = xmlSAX2HasInternalSubset;
2871 hdlr->hasExternalSubset = xmlSAX2HasExternalSubset;
2872 hdlr->resolveEntity = xmlSAX2ResolveEntity;
2873 hdlr->getEntity = xmlSAX2GetEntity;
2874 hdlr->getParameterEntity = xmlSAX2GetParameterEntity;
2875 hdlr->entityDecl = xmlSAX2EntityDecl;
2876 hdlr->attributeDecl = xmlSAX2AttributeDecl;
2877 hdlr->elementDecl = xmlSAX2ElementDecl;
2878 hdlr->notationDecl = xmlSAX2NotationDecl;
2879 hdlr->unparsedEntityDecl = xmlSAX2UnparsedEntityDecl;
2880 hdlr->setDocumentLocator = xmlSAX2SetDocumentLocator;
2881 hdlr->startDocument = xmlSAX2StartDocument;
2882 hdlr->endDocument = xmlSAX2EndDocument;
2883 hdlr->reference = xmlSAX2Reference;
2884 hdlr
2885 hdlr->cdataBlock = xmlSAX2CDataBlock;
2886 hdlr->ignorableWhitespace = xmlSAX2Characters;
2887 hdlr->processingInstruction = xmlSAX2ProcessingInstruction;
2888 hdlr->comment = xmlSAX2Comment;
2889 hdlr->warning = xmlParserWarning;
2890 hdlr->error = xmlParserError;
2891 hdlr->fatalError = xmlParserError;
2898 * @hdlr: the SAX handler
2904 xmlSAX2InitDefaultSAXHandler(xmlSAXHandler *hdlr, int warning)
2906 if ((hdlr == NULL) || (hdlr->initialized != 0))
2909 xmlSAXVersion(hdlr, xmlSAX2DefaultVersionValue);
2911 hdlr->warning = NULL;
2913 hdlr->warning = xmlParserWarning;
2933 * @hdlr: the SAX handler
2938 xmlSAX2InitHtmlDefaultSAXHandler(xmlSAXHandler *hdlr)
2940 if ((hdlr == NULL) || (hdlr->initialized != 0))
2943 hdlr->internalSubset = xmlSAX2InternalSubset;
2944 hdlr->externalSubset = NULL;
2945 hdlr->isStandalone = NULL;
2946 hdlr->hasInternalSubset = NULL;
2947 hdlr->hasExternalSubset = NULL;
2948 hdlr->resolveEntity = NULL;
2949 hdlr->getEntity = xmlSAX2GetEntity;
2950 hdlr->getParameterEntity = NULL;
2951 hdlr->entityDecl = NULL;
2952 hdlr->attributeDecl = NULL;
2953 hdlr->elementDecl = NULL;
2954 hdlr->notationDecl = NULL;
2955 hdlr->unparsedEntityDecl = NULL;
2956 hdlr->setDocumentLocator = xmlSAX2SetDocumentLocator;
2957 hdlr->startDocument = xmlSAX2StartDocument;
2958 hdlr->endDocument = xmlSAX2EndDocument;
2959 hdlr->startElement = xmlSAX2StartElement;
2960 hdlr->endElement = xmlSAX2EndElement;
2961 hdlr->reference = NULL;
2962 hdlr->characters = xmlSAX2Characters;
2963 hdlr->cdataBlock = xmlSAX2CDataBlock;
2964 hdlr->ignorableWhitespace = xmlSAX2IgnorableWhitespace;
2965 hdlr->processingInstruction = xmlSAX2ProcessingInstruction;
2966 hdlr->comment = xmlSAX2Comment;
2967 hdlr->warning = xmlParserWarning;
2968 hdlr->error = xmlParserError;
2969 hdlr->fatalError = xmlParserError;
2971 hdlr->initialized = 1;
2991 * @hdlr: the SAX handler
2996 xmlSAX2InitDocbDefaultSAXHandler(xmlSAXHandler *hdlr)
2998 if ((hdlr == NULL) || (hdlr->initialized != 0))
3001 hdlr->internalSubset = xmlSAX2InternalSubset;
3002 hdlr->externalSubset = NULL;
3003 hdlr->isStandalone = xmlSAX2IsStandalone;
3004 hdlr->hasInternalSubset = xmlSAX2HasInternalSubset;
3005 hdlr->hasExternalSubset = xmlSAX2HasExternalSubset;
3006 hdlr->resolveEntity = xmlSAX2ResolveEntity;
3007 hdlr->getEntity = xmlSAX2GetEntity;
3008 hdlr->getParameterEntity = NULL;
3009 hdlr->entityDecl = xmlSAX2EntityDecl;
3010 hdlr->attributeDecl = NULL;
3011 hdlr->elementDecl = NULL;
3012 hdlr->notationDecl = NULL;
3013 hdlr->unparsedEntityDecl = NULL;
3014 hdlr->setDocumentLocator = xmlSAX2SetDocumentLocator;
3015 hdlr->startDocument = xmlSAX2StartDocument;
3016 hdlr->endDocument = xmlSAX2EndDocument;
3017 hdlr->startElement = xmlSAX2StartElement;
3018 hdlr->endElement = xmlSAX2EndElement;
3019 hdlr->reference = xmlSAX2Reference;
3020 hdlr->characters = xmlSAX2Characters;
3021 hdlr->cdataBlock = NULL;
3022 hdlr->ignorableWhitespace = xmlSAX2IgnorableWhitespace;
3023 hdlr->processingInstruction = NULL;
3024 hdlr->comment = xmlSAX2Comment;
3025 hdlr->warning = xmlParserWarning;
3026 hdlr->error = xmlParserError;
3027 hdlr->fatalError = xmlParserError;
3029 hdlr->initialized = 1;