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

Lines Matching defs:hdlr

35  * @hdlr:  the SAX handler
42 initxmlDefaultSAXHandler(xmlSAXHandlerV1 *hdlr, int warning)
45 if(hdlr->initialized == 1)
48 hdlr->internalSubset = xmlSAX2InternalSubset;
49 hdlr->externalSubset = xmlSAX2ExternalSubset;
50 hdlr->isStandalone = xmlSAX2IsStandalone;
51 hdlr->hasInternalSubset = xmlSAX2HasInternalSubset;
52 hdlr->hasExternalSubset = xmlSAX2HasExternalSubset;
53 hdlr->resolveEntity = xmlSAX2ResolveEntity;
54 hdlr->getEntity = xmlSAX2GetEntity;
55 hdlr->getParameterEntity = xmlSAX2GetParameterEntity;
56 hdlr->entityDecl = xmlSAX2EntityDecl;
57 hdlr->attributeDecl = xmlSAX2AttributeDecl;
58 hdlr->elementDecl = xmlSAX2ElementDecl;
59 hdlr->notationDecl = xmlSAX2NotationDecl;
60 hdlr->unparsedEntityDecl = xmlSAX2UnparsedEntityDecl;
61 hdlr->setDocumentLocator = xmlSAX2SetDocumentLocator;
62 hdlr->startDocument = xmlSAX2StartDocument;
63 hdlr->endDocument = xmlSAX2EndDocument;
64 hdlr->startElement = xmlSAX2StartElement;
65 hdlr->endElement = xmlSAX2EndElement;
66 hdlr->reference = xmlSAX2Reference;
67 hdlr->characters = xmlSAX2Characters;
68 hdlr->cdataBlock = xmlSAX2CDataBlock;
69 hdlr->ignorableWhitespace = xmlSAX2Characters;
70 hdlr->processingInstruction = xmlSAX2ProcessingInstruction;
72 hdlr->warning = NULL;
74 hdlr->warning = xmlParserWarning;
75 hdlr->error = xmlParserError;
76 hdlr->fatalError = xmlParserError;
78 hdlr->initialized = 1;
85 * @hdlr: the SAX handler
91 inithtmlDefaultSAXHandler(xmlSAXHandlerV1 *hdlr)
93 if(hdlr->initialized == 1)
96 hdlr->internalSubset = xmlSAX2InternalSubset;
97 hdlr->externalSubset = NULL;
98 hdlr->isStandalone = NULL;
99 hdlr->hasInternalSubset = NULL;
100 hdlr->hasExternalSubset = NULL;
101 hdlr->resolveEntity = NULL;
102 hdlr->getEntity = xmlSAX2GetEntity;
103 hdlr->getParameterEntity = NULL;
104 hdlr->entityDecl = NULL;
105 hdlr->attributeDecl = NULL;
106 hdlr->elementDecl = NULL;
107 hdlr->notationDecl = NULL;
108 hdlr->unparsedEntityDecl = NULL;
109 hdlr->setDocumentLocator = xmlSAX2SetDocumentLocator;
110 hdlr->startDocument = xmlSAX2StartDocument;
111 hdlr->endDocument = xmlSAX2EndDocument;
112 hdlr->startElement = xmlSAX2StartElement;
113 hdlr->endElement = xmlSAX2EndElement;
114 hdlr->reference = NULL;
115 hdlr->characters = xmlSAX2Characters;
116 hdlr->cdataBlock = xmlSAX2CDataBlock;
117 hdlr->ignorableWhitespace = xmlSAX2IgnorableWhitespace;
118 hdlr->processingInstruction = xmlSAX2ProcessingInstruction;
119 hdlr->comment = xmlSAX2Comment;
120 hdlr->warning = xmlParserWarning;
121 hdlr->error = xmlParserError;
122 hdlr->fatalError = xmlParserError;
124 hdlr->initialized = 1;
132 * @hdlr: the SAX handler
138 initdocbDefaultSAXHandler(xmlSAXHandlerV1 *hdlr)
140 if(hdlr->initialized == 1)
143 hdlr->internalSubset = xmlSAX2InternalSubset;
144 hdlr->externalSubset = NULL;
145 hdlr->isStandalone = xmlSAX2IsStandalone;
146 hdlr->hasInternalSubset = xmlSAX2HasInternalSubset;
147 hdlr->hasExternalSubset = xmlSAX2HasExternalSubset;
148 hdlr->resolveEntity = xmlSAX2ResolveEntity;
149 hdlr->getEntity = xmlSAX2GetEntity;
150 hdlr->getParameterEntity = NULL;
151 hdlr->entityDecl = xmlSAX2EntityDecl;
152 hdlr->attributeDecl = NULL;
153 hdlr->elementDecl = NULL;
154 hdlr->notationDecl = NULL;
155 hdlr->unparsedEntityDecl = NULL;
156 hdlr->setDocumentLocator = xmlSAX2SetDocumentLocator;
157 hdlr->startDocument = xmlSAX2StartDocument;
158 hdlr->endDocument = xmlSAX2EndDocument;
159 hdlr->startElement = xmlSAX2StartElement;
160 hdlr->endElement = xmlSAX2EndElement;
161 hdlr->reference = xmlSAX2Reference;
162 hdlr->characters = xmlSAX2Characters;
163 hdlr->cdataBlock = NULL;
164 hdlr->ignorableWhitespace = xmlSAX2IgnorableWhitespace;
165 hdlr->processingInstruction = NULL;
166 hdlr->comment = xmlSAX2Comment;
167 hdlr->warning = xmlParserWarning;
168 hdlr->error = xmlParserError;
169 hdlr->fatalError = xmlParserError;
171 hdlr->initialized = 1;