Home | History | Annotate | Download | only in libxml2

Lines Matching full:publicid

4731  * @publicID:  a xmlChar** receiving PubidLiteral
4743 * [83] PublicID ::= 'PUBLIC' S PubidLiteral
4746 * case publicID receives PubidLiteral, is strict is off
4747 * it is possible to return NULL and have publicID set.
4751 xmlParseExternalID(xmlParserCtxtPtr ctxt, xmlChar **publicID, int strict) {
4756 *publicID = NULL;
4775 *publicID = xmlParsePubidLiteral(ctxt);
4776 if (*publicID == NULL) {
5389 * [82] NotationDecl ::= '<!NOTATION' S Name S (ExternalID | PublicID) S? '>'