Home | History | Annotate | Download | only in libxml2

Lines Matching refs:standalone

25  * from the SAX callbacks or as standalone functions using a preparsed
482 errmsg = "external parsed entities cannot be standalone";
506 errmsg = "standalone
2502 * with "standalone='yes'", ... ... The declaration of a parameter
2507 * with "standalone='no'", ... ... The declaration of a parameter entity
2602 * references, or a document with "standalone='yes'", ...
2606 if ((ctxt->standalone == 1) ||
2615 * parameter entities with "standalone='no'", ...
5831 "standalone: attribute notation value token %s duplicated\n",
5899 "standalone: attribute enumeration value token %s duplicated\n",
7621 * with "standalone='yes'", the Name given in the entity reference
7631 * well-formedness constraint only if standalone='yes'.
7697 * references, or a document with "standalone='yes'", the
7712 * standalone='yes'.
7715 if ((ctxt->standalone == 1) ||
7807 * with "standalone='yes'", the Name given in the entity reference
7817 * well-formedness constraint only if standalone='yes'.
7895 * references, or a document with "standalone='yes'", the
7910 * standalone='yes'.
7913 if ((ctxt->standalone == 1) ||
8007 * with "standalone='yes'", ... ... The declaration of a parameter
8012 * with "standalone='no'", ... ... The declaration of a parameter entity
8060 * references, or a document with "standalone='yes'", ...
8064 if ((ctxt->standalone == 1) ||
8074 * parameter entities with "standalone='no'", ...
8238 * with "standalone='yes'", ... ... The declaration of a parameter
8243 * with "standalone='no'", ... ... The declaration of a parameter entity
8302 * references, or a document with "standalone='yes'", ...
8306 if ((ctxt->standalone == 1) ||
8314 * parameter entities with "standalone='no'", ...
9686 if ((ctxt->standalone == 1) &&
9689 "standalone: attribute %s on %s defaulted from external subset\n",
10545 * parse the XML standalone declaration
10547 * [32] SDDecl ::= S 'standalone' Eq
10550 * [ VC: Standalone Document Declaration ]
10551 * TODO The standalone document declaration must have the value "no"
10565 * 1 if standalone="yes"
10566 * 0 if standalone="no"
10567 * -2 if standalone attribute is missing or invalid
10568 * (A standalone value of -2 means that the XML declaration was found,
10569 * but no value was specified for the standalone attribute).
10574 int standalone = -2;
10582 return(standalone);
10589 standalone = 0;
10593 standalone = 1;
10605 standalone = 0;
10609 standalone = 1;
10622 return(standalone);
10639 * This value for standalone indicates that the document has an
10640 * XML declaration but it does not have a standalone attribute.
10641 * It will be overwritten later if a standalone attribute is found.
10643 ctxt->input->standalone = -2;
10708 * We may have the standalone status.
10724 ctxt->input->standalone = xmlParseSDDecl(ctxt);
10849 ctxt->standalone = ctxt->input->standalone;
11473 ctxt->standalone = ctxt->input->standalone;
15052 ctxt->standalone = -1;