• Home
  • Raw
  • Download

Lines Matching refs:ent

944     xmlEntityPtr ent = (xmlEntityPtr) payload;  in xmlCopyEntity()  local
955 cur->etype = ent->etype; in xmlCopyEntity()
956 if (ent->name != NULL) in xmlCopyEntity()
957 cur->name = xmlStrdup(ent->name); in xmlCopyEntity()
958 if (ent->ExternalID != NULL) in xmlCopyEntity()
959 cur->ExternalID = xmlStrdup(ent->ExternalID); in xmlCopyEntity()
960 if (ent->SystemID != NULL) in xmlCopyEntity()
961 cur->SystemID = xmlStrdup(ent->SystemID); in xmlCopyEntity()
962 if (ent->content != NULL) in xmlCopyEntity()
963 cur->content = xmlStrdup(ent->content); in xmlCopyEntity()
964 if (ent->orig != NULL) in xmlCopyEntity()
965 cur->orig = xmlStrdup(ent->orig); in xmlCopyEntity()
966 if (ent->URI != NULL) in xmlCopyEntity()
967 cur->URI = xmlStrdup(ent->URI); in xmlCopyEntity()
1036 xmlDumpEntityDecl(xmlBufferPtr buf, xmlEntityPtr ent) { in xmlDumpEntityDecl() argument
1037 if ((buf == NULL) || (ent == NULL)) return; in xmlDumpEntityDecl()
1038 switch (ent->etype) { in xmlDumpEntityDecl()
1041 xmlBufferWriteCHAR(buf, ent->name); in xmlDumpEntityDecl()
1043 if (ent->orig != NULL) in xmlDumpEntityDecl()
1044 xmlBufferWriteQuotedString(buf, ent->orig); in xmlDumpEntityDecl()
1046 xmlDumpEntityContent(buf, ent->content); in xmlDumpEntityDecl()
1051 xmlBufferWriteCHAR(buf, ent->name); in xmlDumpEntityDecl()
1052 if (ent->ExternalID != NULL) { in xmlDumpEntityDecl()
1054 xmlBufferWriteQuotedString(buf, ent->ExternalID); in xmlDumpEntityDecl()
1056 xmlBufferWriteQuotedString(buf, ent->SystemID); in xmlDumpEntityDecl()
1059 xmlBufferWriteQuotedString(buf, ent->SystemID); in xmlDumpEntityDecl()
1065 xmlBufferWriteCHAR(buf, ent->name); in xmlDumpEntityDecl()
1066 if (ent->ExternalID != NULL) { in xmlDumpEntityDecl()
1068 xmlBufferWriteQuotedString(buf, ent->ExternalID); in xmlDumpEntityDecl()
1070 xmlBufferWriteQuotedString(buf, ent->SystemID); in xmlDumpEntityDecl()
1073 xmlBufferWriteQuotedString(buf, ent->SystemID); in xmlDumpEntityDecl()
1075 if (ent->content != NULL) { /* Should be true ! */ in xmlDumpEntityDecl()
1077 if (ent->orig != NULL) in xmlDumpEntityDecl()
1078 xmlBufferWriteCHAR(buf, ent->orig); in xmlDumpEntityDecl()
1080 xmlBufferWriteCHAR(buf, ent->content); in xmlDumpEntityDecl()
1086 xmlBufferWriteCHAR(buf, ent->name); in xmlDumpEntityDecl()
1088 if (ent->orig == NULL) in xmlDumpEntityDecl()
1089 xmlDumpEntityContent(buf, ent->content); in xmlDumpEntityDecl()
1091 xmlBufferWriteQuotedString(buf, ent->orig); in xmlDumpEntityDecl()
1096 xmlBufferWriteCHAR(buf, ent->name); in xmlDumpEntityDecl()
1097 if (ent->ExternalID != NULL) { in xmlDumpEntityDecl()
1099 xmlBufferWriteQuotedString(buf, ent->ExternalID); in xmlDumpEntityDecl()
1101 xmlBufferWriteQuotedString(buf, ent->SystemID); in xmlDumpEntityDecl()
1104 xmlBufferWriteQuotedString(buf, ent->SystemID); in xmlDumpEntityDecl()
1122 xmlDumpEntityDeclScan(void *ent, void *buf, in xmlDumpEntityDeclScan() argument
1124 xmlDumpEntityDecl((xmlBufferPtr) buf, (xmlEntityPtr) ent); in xmlDumpEntityDeclScan()