Home | History | Annotate | Download | only in libxml2

Lines Matching full:publicid

4444  * @publicID:  a xmlChar** receiving PubidLiteral
4456 * [83] PublicID ::= 'PUBLIC' S PubidLiteral
4459 * case publicID receives PubidLiteral, is strict is off
4460 * it is possible to return NULL and have publicID set.
4464 xmlParseExternalID(xmlParserCtxtPtr ctxt, xmlChar **publicID, int strict) {
4469 *publicID = NULL;
4488 *publicID = xmlParsePubidLiteral(ctxt);
4489 if (*publicID == NULL) {
5053 * [82] NotationDecl ::= '<!NOTATION' S Name S (ExternalID | PublicID) S? '>'