• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/libxml2-26/libxml2/

Lines Matching defs:hdlr

2879  * @hdlr:  the SAX handler
2887 xmlSAXVersion(xmlSAXHandler *hdlr, int version)
2889 if (hdlr == NULL) return(-1);
2891 hdlr->startElement = NULL;
2892 hdlr->endElement = NULL;
2893 hdlr->startElementNs = xmlSAX2StartElementNs;
2894 hdlr->endElementNs = xmlSAX2EndElementNs;
2895 hdlr->serror = NULL;
2896 hdlr->initialized = XML_SAX2_MAGIC;
2899 hdlr->startElement = xmlSAX2StartElement;
2900 hdlr->endElement = xmlSAX2EndElement;
2901 hdlr->initialized = 1;
2905 hdlr->internalSubset = xmlSAX2InternalSubset;
2906 hdlr->externalSubset = xmlSAX2ExternalSubset;
2907 hdlr->isStandalone = xmlSAX2IsStandalone;
2908 hdlr->hasInternalSubset = xmlSAX2HasInternalSubset;
2909 hdlr->hasExternalSubset = xmlSAX2HasExternalSubset;
2910 hdlr->resolveEntity = xmlSAX2ResolveEntity;
2911 hdlr->getEntity = xmlSAX2GetEntity;
2912 hdlr->getParameterEntity = xmlSAX2GetParameterEntity;
2913 hdlr->entityDecl = xmlSAX2EntityDecl;
2914 hdlr->attributeDecl = xmlSAX2AttributeDecl;
2915 hdlr->elementDecl = xmlSAX2ElementDecl;
2916 hdlr->notationDecl = xmlSAX2NotationDecl;
2917 hdlr->unparsedEntityDecl = xmlSAX2UnparsedEntityDecl;
2918 hdlr->setDocumentLocator = xmlSAX2SetDocumentLocator;
2919 hdlr->startDocument = xmlSAX2StartDocument;
2920 hdlr->endDocument = xmlSAX2EndDocument;
2921 hdlr->reference = xmlSAX2Reference;
2922 hdlr->characters = xmlSAX2Characters;
2923 hdlr->cdataBlock = xmlSAX2CDataBlock;
2924 hdlr->ignorableWhitespace = xmlSAX2Characters;
2925 hdlr->processingInstruction = xmlSAX2ProcessingInstruction;
2926 hdlr->comment = xmlSAX2Comment;
2927 hdlr->warning = xmlParserWarning;
2928 hdlr->error = xmlParserError;
2929 hdlr->fatalError = xmlParserError;
2936 * @hdlr: the SAX handler
2942 xmlSAX2InitDefaultSAXHandler(xmlSAXHandler *hdlr, int warning)
2944 if ((hdlr == NULL) || (hdlr->initialized != 0))
2947 xmlSAXVersion(hdlr, xmlSAX2DefaultVersionValue);
2949 hdlr->warning = NULL;
2951 hdlr->warning = xmlParserWarning;
2971 * @hdlr: the SAX handler
2976 xmlSAX2InitHtmlDefaultSAXHandler(xmlSAXHandler *hdlr)
2978 if ((hdlr == NULL) || (hdlr->initialized != 0))
2981 hdlr->internalSubset = xmlSAX2InternalSubset;
2982 hdlr->externalSubset = NULL;
2983 hdlr->isStandalone = NULL;
2984 hdlr->hasInternalSubset = NULL;
2985 hdlr->hasExternalSubset = NULL;
2986 hdlr->resolveEntity = NULL;
2987 hdlr->getEntity = xmlSAX2GetEntity;
2988 hdlr->getParameterEntity = NULL;
2989 hdlr->entityDecl = NULL;
2990 hdlr->attributeDecl = NULL;
2991 hdlr->elementDecl = NULL;
2992 hdlr->notationDecl = NULL;
2993 hdlr->unparsedEntityDecl = NULL;
2994 hdlr->setDocumentLocator = xmlSAX2SetDocumentLocator;
2995 hdlr->startDocument = xmlSAX2StartDocument;
2996 hdlr->endDocument = xmlSAX2EndDocument;
2997 hdlr->startElement = xmlSAX2StartElement;
2998 hdlr->endElement = xmlSAX2EndElement;
2999 hdlr->reference = NULL;
3000 hdlr->characters = xmlSAX2Characters;
3001 hdlr->cdataBlock = xmlSAX2CDataBlock;
3002 hdlr->ignorableWhitespace = xmlSAX2IgnorableWhitespace;
3003 hdlr->processingInstruction = xmlSAX2ProcessingInstruction;
3004 hdlr->comment = xmlSAX2Comment;
3005 hdlr->warning = xmlParserWarning;
3006 hdlr->error = xmlParserError;
3007 hdlr->fatalError = xmlParserError;
3009 hdlr->initialized = 1;
3029 * @hdlr: the SAX handler
3034 xmlSAX2InitDocbDefaultSAXHandler(xmlSAXHandler *hdlr)
3036 if ((hdlr == NULL) || (hdlr->initialized != 0))
3039 hdlr->internalSubset = xmlSAX2InternalSubset;
3040 hdlr->externalSubset = NULL;
3041 hdlr->isStandalone = xmlSAX2IsStandalone;
3042 hdlr->hasInternalSubset = xmlSAX2HasInternalSubset;
3043 hdlr->hasExternalSubset = xmlSAX2HasExternalSubset;
3044 hdlr->resolveEntity = xmlSAX2ResolveEntity;
3045 hdlr->getEntity = xmlSAX2GetEntity;
3046 hdlr->getParameterEntity = NULL;
3047 hdlr->entityDecl = xmlSAX2EntityDecl;
3048 hdlr->attributeDecl = NULL;
3049 hdlr->elementDecl = NULL;
3050 hdlr->notationDecl = NULL;
3051 hdlr->unparsedEntityDecl = NULL;
3052 hdlr->setDocumentLocator = xmlSAX2SetDocumentLocator;
3053 hdlr->startDocument = xmlSAX2StartDocument;
3054 hdlr->endDocument = xmlSAX2EndDocument;
3055 hdlr->startElement = xmlSAX2StartElement;
3056 hdlr->endElement = xmlSAX2EndElement;
3057 hdlr->reference = xmlSAX2Reference;
3058 hdlr->characters = xmlSAX2Characters;
3059 hdlr->cdataBlock = NULL;
3060 hdlr->ignorableWhitespace = xmlSAX2IgnorableWhitespace;
3061 hdlr->processingInstruction = NULL;
3062 hdlr->comment = xmlSAX2Comment;
3063 hdlr->warning = xmlParserWarning;
3064 hdlr->error = xmlParserError;
3065 hdlr->fatalError = xmlParserError;
3067 hdlr->initialized = 1;