wrong = checkKeyword(c, XmlConsts.XML_DECL_KW_ENCODING);
if (wrong != null) {
throwParseError(ErrorConsts.ERR_UNEXP_KEYWORD, wrong, XmlConsts.XML_DECL_KW_ENCODING);
}
c = skipEquals(XmlConsts.XML_DECL_KW_ENCODING, SUFFIX_IN_XML_DECL);
tb.resetWithEmpty();
parseQuoted(XmlConsts.XML_DECL_KW_ENCODING, c, tb);
mDocXmlEncoding = tb.toString();
/* should we verify encoding at this point? let's not, for now;
* since it's for information only, first declaration from
* bootstrapper is used for the whole stream.