Home | History | Annotate | Download | only in libxml2

Lines Matching full:value

42  * Substitute the HTML entities by their value
167 * Read the current value of one feature of this parser instance
274 * @value: pointer to the location of the new value
276 * Change the current value of one feature of this parser instance
281 xmlSetFeature(xmlParserCtxtPtr ctxt, const char *name, void *value)
283 if ((ctxt == NULL) || (name == NULL) || (value == NULL))
287 int newvalidate = *((int *) value);
298 ctxt->keepBlanks = *((int *) value);
300 ctxt->disableSAX = *((int *) value);
302 ctxt->loadsubset = *((int *) value);
304 ctxt->replaceEntities = *((int *) value);
306 ctxt->record_info = *((int *) value);
308 ctxt->userData = *((void **) value);
310 ctxt->html = *((int *) value);
312 ctxt->standalone = *((int *) value);
314 ctxt->myDoc = *((xmlDocPtr *) value);
316 ctxt->wellFormed = *((int *) value);
318 ctxt->valid = *((int *) value);
320 ctxt->sax = *((xmlSAXHandlerPtr *) value);
322 ctxt->sax->internalSubset = *((internalSubsetSAXFunc *) value);
324 ctxt->sax->isStandalone = *((isStandaloneSAXFunc *) value);
327 *((hasInternalSubsetSAXFunc *) value);
330 *((hasExternalSubsetSAXFunc *) value);
332 ctxt->sax->resolveEntity = *((resolveEntitySAXFunc *) value);
334 ctxt->sax->getEntity = *((getEntitySAXFunc *) value);
336 ctxt->sax->entityDecl = *((entityDeclSAXFunc *) value);
338 ctxt->sax->notationDecl = *((notationDeclSAXFunc *) value);
340 ctxt->sax->attributeDecl = *((attributeDeclSAXFunc *) value);
342 ctxt->sax->elementDecl = *((elementDeclSAXFunc *) value);
345 *((unparsedEntityDeclSAXFunc *) value);
348 *((setDocumentLocatorSAXFunc *) value);
350 ctxt->sax->startDocument = *((startDocumentSAXFunc *) value);
352 ctxt->sax->endDocument = *((endDocumentSAXFunc *) value);
354 ctxt->sax->startElement = *((startElementSAXFunc *) value);
356 ctxt->sax->endElement = *((endElementSAXFunc *) value);
358 ctxt->sax->reference = *((referenceSAXFunc *) value);
360 ctxt->sax->characters = *((charactersSAXFunc *) value);
363 *((ignorableWhitespaceSAXFunc *) value);
366 *((processingInstructionSAXFunc *) value);
368 ctxt->sax->comment = *((commentSAXFunc *) value);
370 ctxt->sax->warning = *((warningSAXFunc *) value);
372 ctxt->sax->error = *((errorSAXFunc *) value);
374 ctxt->sax->fatalError = *((fatalErrorSAXFunc *) value);
377 *((getParameterEntitySAXFunc *) value);
379 ctxt->sax->cdataBlock = *((cdataBlockSAXFunc *) value);
381 ctxt->sax->externalSubset = *((externalSubsetSAXFunc *) value);
968 * @content: the entity value (without processing).
988 * @def: the type of default value
989 * @defaultValue: the attribute default value
990 * @tree: the tree of enumerated value set
1010 * @content: the element value tree
1111 * @value: The attribute value
1122 const xmlChar * value ATTRIBUTE_UNUSED)
1131 * @atts: An array of name/value attributes pairs, NULL terminated
1313 * @value: the comment content
1319 comment(void *ctx, const xmlChar * value)
1322 xmlSAX2Comment(ctx, value);
1328 * @value: The pcdata content
1335 cdataBlock(void *ctx, const xmlChar * value, int len)
1338 xmlSAX2CDataBlock(ctx, value, len);