• Home
  • Raw
  • Download

Lines Matching refs:sax

231         *((xmlSAXHandlerPtr *) result) = ctxt->sax;  in xmlGetFeature()
233 *((internalSubsetSAXFunc *) result) = ctxt->sax->internalSubset; in xmlGetFeature()
235 *((isStandaloneSAXFunc *) result) = ctxt->sax->isStandalone; in xmlGetFeature()
238 ctxt->sax->hasInternalSubset; in xmlGetFeature()
241 ctxt->sax->hasExternalSubset; in xmlGetFeature()
243 *((resolveEntitySAXFunc *) result) = ctxt->sax->resolveEntity; in xmlGetFeature()
245 *((getEntitySAXFunc *) result) = ctxt->sax->getEntity; in xmlGetFeature()
247 *((entityDeclSAXFunc *) result) = ctxt->sax->entityDecl; in xmlGetFeature()
249 *((notationDeclSAXFunc *) result) = ctxt->sax->notationDecl; in xmlGetFeature()
251 *((attributeDeclSAXFunc *) result) = ctxt->sax->attributeDecl; in xmlGetFeature()
253 *((elementDeclSAXFunc *) result) = ctxt->sax->elementDecl; in xmlGetFeature()
256 ctxt->sax->unparsedEntityDecl; in xmlGetFeature()
259 ctxt->sax->setDocumentLocator; in xmlGetFeature()
261 *((startDocumentSAXFunc *) result) = ctxt->sax->startDocument; in xmlGetFeature()
263 *((endDocumentSAXFunc *) result) = ctxt->sax->endDocument; in xmlGetFeature()
265 *((startElementSAXFunc *) result) = ctxt->sax->startElement; in xmlGetFeature()
267 *((endElementSAXFunc *) result) = ctxt->sax->endElement; in xmlGetFeature()
269 *((referenceSAXFunc *) result) = ctxt->sax->reference; in xmlGetFeature()
271 *((charactersSAXFunc *) result) = ctxt->sax->characters; in xmlGetFeature()
274 ctxt->sax->ignorableWhitespace; in xmlGetFeature()
277 ctxt->sax->processingInstruction; in xmlGetFeature()
279 *((commentSAXFunc *) result) = ctxt->sax->comment; in xmlGetFeature()
281 *((warningSAXFunc *) result) = ctxt->sax->warning; in xmlGetFeature()
283 *((errorSAXFunc *) result) = ctxt->sax->error; in xmlGetFeature()
285 *((fatalErrorSAXFunc *) result) = ctxt->sax->fatalError; in xmlGetFeature()
288 ctxt->sax->getParameterEntity; in xmlGetFeature()
290 *((cdataBlockSAXFunc *) result) = ctxt->sax->cdataBlock; in xmlGetFeature()
292 *((externalSubsetSAXFunc *) result) = ctxt->sax->externalSubset; in xmlGetFeature()
349 ctxt->sax = *((xmlSAXHandlerPtr *) value); in xmlSetFeature()
351 ctxt->sax->internalSubset = *((internalSubsetSAXFunc *) value); in xmlSetFeature()
353 ctxt->sax->isStandalone = *((isStandaloneSAXFunc *) value); in xmlSetFeature()
355 ctxt->sax->hasInternalSubset = in xmlSetFeature()
358 ctxt->sax->hasExternalSubset = in xmlSetFeature()
361 ctxt->sax->resolveEntity = *((resolveEntitySAXFunc *) value); in xmlSetFeature()
363 ctxt->sax->getEntity = *((getEntitySAXFunc *) value); in xmlSetFeature()
365 ctxt->sax->entityDecl = *((entityDeclSAXFunc *) value); in xmlSetFeature()
367 ctxt->sax->notationDecl = *((notationDeclSAXFunc *) value); in xmlSetFeature()
369 ctxt->sax->attributeDecl = *((attributeDeclSAXFunc *) value); in xmlSetFeature()
371 ctxt->sax->elementDecl = *((elementDeclSAXFunc *) value); in xmlSetFeature()
373 ctxt->sax->unparsedEntityDecl = in xmlSetFeature()
376 ctxt->sax->setDocumentLocator = in xmlSetFeature()
379 ctxt->sax->startDocument = *((startDocumentSAXFunc *) value); in xmlSetFeature()
381 ctxt->sax->endDocument = *((endDocumentSAXFunc *) value); in xmlSetFeature()
383 ctxt->sax->startElement = *((startElementSAXFunc *) value); in xmlSetFeature()
385 ctxt->sax->endElement = *((endElementSAXFunc *) value); in xmlSetFeature()
387 ctxt->sax->reference = *((referenceSAXFunc *) value); in xmlSetFeature()
389 ctxt->sax->characters = *((charactersSAXFunc *) value); in xmlSetFeature()
391 ctxt->sax->ignorableWhitespace = in xmlSetFeature()
394 ctxt->sax->processingInstruction = in xmlSetFeature()
397 ctxt->sax->comment = *((commentSAXFunc *) value); in xmlSetFeature()
399 ctxt->sax->warning = *((warningSAXFunc *) value); in xmlSetFeature()
401 ctxt->sax->error = *((errorSAXFunc *) value); in xmlSetFeature()
403 ctxt->sax->fatalError = *((fatalErrorSAXFunc *) value); in xmlSetFeature()
405 ctxt->sax->getParameterEntity = in xmlSetFeature()
408 ctxt->sax->cdataBlock = *((cdataBlockSAXFunc *) value); in xmlSetFeature()
410 ctxt->sax->externalSubset = *((externalSubsetSAXFunc *) value); in xmlSetFeature()