Lines Matching refs:entities
2 * entities.c : implementation for the XML entities handling
18 #include <libxml/entities.h>
28 * The XML predefined entities.
200 * xmlAddEntity : register a new entity for an entities table.
221 if (dtd->entities == NULL)
222 dtd->entities = xmlHashCreateDict(0, dict);
223 table = dtd->entities;
427 * @parameter: look for parameter entities
486 if ((doc->extSubset != NULL) && (doc->extSubset->entities != NULL)) {
487 table = (xmlEntitiesTablePtr) doc->extSubset->entities;
500 * in the predefined entities too.
510 if ((doc->intSubset != NULL) && (doc->intSubset->entities != NULL)) {
511 table = (xmlEntitiesTablePtr) doc->intSubset->entities;
518 (doc->extSubset->entities != NULL)) {
519 table = (xmlEntitiesTablePtr) doc->extSubset->entities;
548 * Do a global encoding of a string, replacing the predefined entities
549 * and non ASCII values with their entities and CharRef counterparts.
747 * Do a global encoding of a string, replacing the predefined entities
748 * and non ASCII values with their entities and CharRef counterparts for
763 * Do a global encoding of a string, replacing the predefined entities
764 * and non ASCII values with their entities and CharRef counterparts.
780 * Do a global encoding of a string, replacing the predefined entities
865 * create and initialize an empty entities hash table.
880 * Deallocate the memory used by an entities in the hash table.
893 * Deallocate the memory used by an entities hash table.