• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/

Lines Matching defs:content

119         if ((entity->content != NULL)
120 && (!xmlDictOwns(dict, entity->content)))
121 xmlFree((char *) entity->content);
133 if (entity->content != NULL)
134 xmlFree((char *) entity->content);
149 const xmlChar *content) {
178 if (content != NULL) {
179 ret->length = xmlStrlen(content);
181 ret->content = (xmlChar *)
182 xmlDictLookup(dict, content, ret->length);
184 ret->content = xmlStrndup(content, ret->length);
187 ret->content = NULL;
203 const xmlChar *content) {
234 ret = xmlCreateEntity(dict, name, type, ExternalID, SystemID, content);
292 * @content: the entity content
301 const xmlChar *content) {
316 ret = xmlAddEntity(dtd, name, type, ExternalID, SystemID, content);
341 * @content: the entity content
350 const xmlChar *content) {
365 ret = xmlAddEntity(dtd, name, type, ExternalID, SystemID, content);
390 * @content: the entity content
403 const xmlChar *content) {
408 return(xmlAddDocEntity(doc, name, type, ExternalID, SystemID, content));
414 ret = xmlCreateEntity(dict, name, type, ExternalID, SystemID, content);
845 if (ent->content != NULL)
846 cur->content = xmlStrdup(ent->content);
873 * @content: The entity content.
879 xmlDumpEntityContent(xmlBufferPtr buf, const xmlChar *content) {
881 if (xmlStrchr(content, '%')) {
885 base = cur = content;
907 xmlBufferWriteQuotedString(buf, content);
916 * This will dump the content of the entity table as an XML DTD definition
929 xmlDumpEntityContent(buf, ent->content);
958 if (ent->content != NULL) { /* Should be true ! */
963 xmlBufferWriteCHAR(buf, ent->content);
972 xmlDumpEntityContent(buf, ent->content);
1014 * This will dump the content of the entity table as an XML DTD definition