Home
last modified time | relevance | path

Searched refs:XmlNameMatchesAscii (Results 1 – 3 of 3) sorted by relevance

/dragonfly/contrib/expat/lib/
H A Dxmlrole.c253 if (XmlNameMatchesAscii(enc, ptr, end, KW_SYSTEM)) { in doctype1()
257 if (XmlNameMatchesAscii(enc, ptr, end, KW_PUBLIC)) { in doctype1()
457 if (XmlNameMatchesAscii(enc, ptr, end, KW_SYSTEM)) { in entity2()
461 if (XmlNameMatchesAscii(enc, ptr, end, KW_PUBLIC)) { in entity2()
516 if (XmlNameMatchesAscii(enc, ptr, end, KW_NDATA)) { in entity5()
549 if (XmlNameMatchesAscii(enc, ptr, end, KW_SYSTEM)) { in entity7()
553 if (XmlNameMatchesAscii(enc, ptr, end, KW_PUBLIC)) { in entity7()
637 if (XmlNameMatchesAscii(enc, ptr, end, KW_SYSTEM)) { in notation1()
641 if (XmlNameMatchesAscii(enc, ptr, end, KW_PUBLIC)) { in notation1()
929 if (XmlNameMatchesAscii(enc, ptr, end, KW_EMPTY)) { in element1()
[all …]
H A Dxmltok.c1173 if (! XmlNameMatchesAscii(enc, name, nameEnd, KW_version)) { in doParseXmlDecl()
1196 if (XmlNameMatchesAscii(enc, name, nameEnd, KW_encoding)) { in doParseXmlDecl()
1213 if (! XmlNameMatchesAscii(enc, name, nameEnd, KW_standalone) in doParseXmlDecl()
1218 if (XmlNameMatchesAscii(enc, val, ptr - enc->minBytesPerChar, KW_yes)) { in doParseXmlDecl()
1221 } else if (XmlNameMatchesAscii(enc, val, ptr - enc->minBytesPerChar, KW_no)) { in doParseXmlDecl()
H A Dxmltok.h254 #define XmlNameMatchesAscii(enc, ptr1, end1, ptr2) \ macro