• Home
  • Raw
  • Download

Lines Matching refs:sax

202         *((xmlSAXHandlerPtr *) result) = ctxt->sax;  in xmlGetFeature()
204 *((internalSubsetSAXFunc *) result) = ctxt->sax->internalSubset; in xmlGetFeature()
206 *((isStandaloneSAXFunc *) result) = ctxt->sax->isStandalone; in xmlGetFeature()
209 ctxt->sax->hasInternalSubset; in xmlGetFeature()
212 ctxt->sax->hasExternalSubset; in xmlGetFeature()
214 *((resolveEntitySAXFunc *) result) = ctxt->sax->resolveEntity; in xmlGetFeature()
216 *((getEntitySAXFunc *) result) = ctxt->sax->getEntity; in xmlGetFeature()
218 *((entityDeclSAXFunc *) result) = ctxt->sax->entityDecl; in xmlGetFeature()
220 *((notationDeclSAXFunc *) result) = ctxt->sax->notationDecl; in xmlGetFeature()
222 *((attributeDeclSAXFunc *) result) = ctxt->sax->attributeDecl; in xmlGetFeature()
224 *((elementDeclSAXFunc *) result) = ctxt->sax->elementDecl; in xmlGetFeature()
227 ctxt->sax->unparsedEntityDecl; in xmlGetFeature()
230 ctxt->sax->setDocumentLocator; in xmlGetFeature()
232 *((startDocumentSAXFunc *) result) = ctxt->sax->startDocument; in xmlGetFeature()
234 *((endDocumentSAXFunc *) result) = ctxt->sax->endDocument; in xmlGetFeature()
236 *((startElementSAXFunc *) result) = ctxt->sax->startElement; in xmlGetFeature()
238 *((endElementSAXFunc *) result) = ctxt->sax->endElement; in xmlGetFeature()
240 *((referenceSAXFunc *) result) = ctxt->sax->reference; in xmlGetFeature()
242 *((charactersSAXFunc *) result) = ctxt->sax->characters; in xmlGetFeature()
245 ctxt->sax->ignorableWhitespace; in xmlGetFeature()
248 ctxt->sax->processingInstruction; in xmlGetFeature()
250 *((commentSAXFunc *) result) = ctxt->sax->comment; in xmlGetFeature()
252 *((warningSAXFunc *) result) = ctxt->sax->warning; in xmlGetFeature()
254 *((errorSAXFunc *) result) = ctxt->sax->error; in xmlGetFeature()
256 *((fatalErrorSAXFunc *) result) = ctxt->sax->fatalError; in xmlGetFeature()
259 ctxt->sax->getParameterEntity; in xmlGetFeature()
261 *((cdataBlockSAXFunc *) result) = ctxt->sax->cdataBlock; in xmlGetFeature()
263 *((externalSubsetSAXFunc *) result) = ctxt->sax->externalSubset; in xmlGetFeature()
320 ctxt->sax = *((xmlSAXHandlerPtr *) value); in xmlSetFeature()
322 ctxt->sax->internalSubset = *((internalSubsetSAXFunc *) value); in xmlSetFeature()
324 ctxt->sax->isStandalone = *((isStandaloneSAXFunc *) value); in xmlSetFeature()
326 ctxt->sax->hasInternalSubset = in xmlSetFeature()
329 ctxt->sax->hasExternalSubset = in xmlSetFeature()
332 ctxt->sax->resolveEntity = *((resolveEntitySAXFunc *) value); in xmlSetFeature()
334 ctxt->sax->getEntity = *((getEntitySAXFunc *) value); in xmlSetFeature()
336 ctxt->sax->entityDecl = *((entityDeclSAXFunc *) value); in xmlSetFeature()
338 ctxt->sax->notationDecl = *((notationDeclSAXFunc *) value); in xmlSetFeature()
340 ctxt->sax->attributeDecl = *((attributeDeclSAXFunc *) value); in xmlSetFeature()
342 ctxt->sax->elementDecl = *((elementDeclSAXFunc *) value); in xmlSetFeature()
344 ctxt->sax->unparsedEntityDecl = in xmlSetFeature()
347 ctxt->sax->setDocumentLocator = in xmlSetFeature()
350 ctxt->sax->startDocument = *((startDocumentSAXFunc *) value); in xmlSetFeature()
352 ctxt->sax->endDocument = *((endDocumentSAXFunc *) value); in xmlSetFeature()
354 ctxt->sax->startElement = *((startElementSAXFunc *) value); in xmlSetFeature()
356 ctxt->sax->endElement = *((endElementSAXFunc *) value); in xmlSetFeature()
358 ctxt->sax->reference = *((referenceSAXFunc *) value); in xmlSetFeature()
360 ctxt->sax->characters = *((charactersSAXFunc *) value); in xmlSetFeature()
362 ctxt->sax->ignorableWhitespace = in xmlSetFeature()
365 ctxt->sax->processingInstruction = in xmlSetFeature()
368 ctxt->sax->comment = *((commentSAXFunc *) value); in xmlSetFeature()
370 ctxt->sax->warning = *((warningSAXFunc *) value); in xmlSetFeature()
372 ctxt->sax->error = *((errorSAXFunc *) value); in xmlSetFeature()
374 ctxt->sax->fatalError = *((fatalErrorSAXFunc *) value); in xmlSetFeature()
376 ctxt->sax->getParameterEntity = in xmlSetFeature()
379 ctxt->sax->cdataBlock = *((cdataBlockSAXFunc *) value); in xmlSetFeature()
381 ctxt->sax->externalSubset = *((externalSubsetSAXFunc *) value); in xmlSetFeature()