MCPcopy Create free account
hub / github.com/Kitware/VTK / xmlGetEntityFromTable

Function xmlGetEntityFromTable

ThirdParty/libxml2/vtklibxml2/entities.c:420–423  ·  view source on GitHub ↗

* xmlGetEntityFromTable: * @table: an entity table * @name: the entity name * @parameter: look for parameter entities * * Do an entity lookup in the table. * returns the corresponding parameter entity, if found. * * Returns A pointer to the entity structure or NULL if not found. */

Source from the content-addressed store, hash-verified

418 * Returns A pointer to the entity structure or NULL if not found.
419 */
420static xmlEntityPtr
421xmlGetEntityFromTable(xmlEntitiesTablePtr table, const xmlChar *name) {
422 return((xmlEntityPtr) xmlHashLookup(table, name));
423}
424
425/**
426 * xmlGetParameterEntity:

Callers 3

xmlGetParameterEntityFunction · 0.85
xmlGetDtdEntityFunction · 0.85
xmlGetDocEntityFunction · 0.85

Calls 1

xmlHashLookupFunction · 0.85

Tested by

no test coverage detected