• Home
  • Raw
  • Download

Lines Matching refs:ent

910 xmlCopyEntity(xmlEntityPtr ent) {  in xmlCopyEntity()  argument
921 cur->etype = ent->etype; in xmlCopyEntity()
922 if (ent->name != NULL) in xmlCopyEntity()
923 cur->name = xmlStrdup(ent->name); in xmlCopyEntity()
924 if (ent->ExternalID != NULL) in xmlCopyEntity()
925 cur->ExternalID = xmlStrdup(ent->ExternalID); in xmlCopyEntity()
926 if (ent->SystemID != NULL) in xmlCopyEntity()
927 cur->SystemID = xmlStrdup(ent->SystemID); in xmlCopyEntity()
928 if (ent->content != NULL) in xmlCopyEntity()
929 cur->content = xmlStrdup(ent->content); in xmlCopyEntity()
930 if (ent->orig != NULL) in xmlCopyEntity()
931 cur->orig = xmlStrdup(ent->orig); in xmlCopyEntity()
932 if (ent->URI != NULL) in xmlCopyEntity()
933 cur->URI = xmlStrdup(ent->URI); in xmlCopyEntity()
1002 xmlDumpEntityDecl(xmlBufferPtr buf, xmlEntityPtr ent) { in xmlDumpEntityDecl() argument
1003 if ((buf == NULL) || (ent == NULL)) return; in xmlDumpEntityDecl()
1004 switch (ent->etype) { in xmlDumpEntityDecl()
1007 xmlBufferWriteCHAR(buf, ent->name); in xmlDumpEntityDecl()
1009 if (ent->orig != NULL) in xmlDumpEntityDecl()
1010 xmlBufferWriteQuotedString(buf, ent->orig); in xmlDumpEntityDecl()
1012 xmlDumpEntityContent(buf, ent->content); in xmlDumpEntityDecl()
1017 xmlBufferWriteCHAR(buf, ent->name); in xmlDumpEntityDecl()
1018 if (ent->ExternalID != NULL) { in xmlDumpEntityDecl()
1020 xmlBufferWriteQuotedString(buf, ent->ExternalID); in xmlDumpEntityDecl()
1022 xmlBufferWriteQuotedString(buf, ent->SystemID); in xmlDumpEntityDecl()
1025 xmlBufferWriteQuotedString(buf, ent->SystemID); in xmlDumpEntityDecl()
1031 xmlBufferWriteCHAR(buf, ent->name); in xmlDumpEntityDecl()
1032 if (ent->ExternalID != NULL) { in xmlDumpEntityDecl()
1034 xmlBufferWriteQuotedString(buf, ent->ExternalID); in xmlDumpEntityDecl()
1036 xmlBufferWriteQuotedString(buf, ent->SystemID); in xmlDumpEntityDecl()
1039 xmlBufferWriteQuotedString(buf, ent->SystemID); in xmlDumpEntityDecl()
1041 if (ent->content != NULL) { /* Should be true ! */ in xmlDumpEntityDecl()
1043 if (ent->orig != NULL) in xmlDumpEntityDecl()
1044 xmlBufferWriteCHAR(buf, ent->orig); in xmlDumpEntityDecl()
1046 xmlBufferWriteCHAR(buf, ent->content); in xmlDumpEntityDecl()
1052 xmlBufferWriteCHAR(buf, ent->name); in xmlDumpEntityDecl()
1054 if (ent->orig == NULL) in xmlDumpEntityDecl()
1055 xmlDumpEntityContent(buf, ent->content); in xmlDumpEntityDecl()
1057 xmlBufferWriteQuotedString(buf, ent->orig); in xmlDumpEntityDecl()
1062 xmlBufferWriteCHAR(buf, ent->name); in xmlDumpEntityDecl()
1063 if (ent->ExternalID != NULL) { in xmlDumpEntityDecl()
1065 xmlBufferWriteQuotedString(buf, ent->ExternalID); in xmlDumpEntityDecl()
1067 xmlBufferWriteQuotedString(buf, ent->SystemID); in xmlDumpEntityDecl()
1070 xmlBufferWriteQuotedString(buf, ent->SystemID); in xmlDumpEntityDecl()
1088 xmlDumpEntityDeclScan(xmlEntityPtr ent, xmlBufferPtr buf) { in xmlDumpEntityDeclScan() argument
1089 xmlDumpEntityDecl(buf, ent); in xmlDumpEntityDeclScan()