Lines Matching full:entities
2 * entities.c : implementation for the XML entities handling
18 #include <libxml/entities.h>
26 * The XML predefined entities.
198 * xmlAddEntity : register a new entity for an entities table.
219 if (dtd->entities == NULL)
220 dtd->entities = xmlHashCreateDict(0, dict);
221 table = dtd->entities;
425 * @parameter: look for parameter entities
484 if ((doc->extSubset != NULL) && (doc->extSubset->entities != NULL)) {
485 table = (xmlEntitiesTablePtr) doc->extSubset->entities;
498 * in the predefined entities too.
508 if ((doc->intSubset != NULL) && (doc->intSubset->entities != NULL)) {
509 table = (xmlEntitiesTablePtr) doc->intSubset->entities;
516 (doc->extSubset->entities != NULL)) {
517 table = (xmlEntitiesTablePtr) doc->extSubset->entities;
546 * Do a global encoding of a string, replacing the predefined entities
547 * and non ASCII values with their entities and CharRef counterparts.
702 * Do a global encoding of a string, replacing the predefined entities
782 * create and initialize an empty entities hash table.
797 * Deallocate the memory used by an entities in the hash table.
810 * Deallocate the memory used by an entities hash table.