const TInt | KReadBufferLen |
const TInt | KWriteBufferLen |
const TInt | KErrXMLDuplicateDocTypeTags |
Error code that indicates that more than one DOCTYPE tag has been encountered: the first one encountered will be used.
const TInt | KErrXMLDuplicateVersionTags |
Error code that indicates that more than one XML version tag has been encountered: the first one encountered will be used.
const TInt | KErrXMLDuplicateRootElements |
Error code that indicates that more than one element has been encountered at the root of the document (there should be a single <smil> element). The resulting tree may be confused, but is provided rather than being discarded.
const TInt | KErrXMLMissingDocTypeTag |
Error code that indicates that no DOCTYPE tag was encountered.
const TInt | KErrXMLMissingVersionTag |
Error code that indicates that no XML version tag was encountered.
const TInt | KErrXMLDuplicateAttributeName |
Error code that indicates that an element has two or more entries for the same attribute.
const TInt | KErrXMLMultipleRootElements |
Error code that indicates there is no single root element.
This may be the result of two of more root elements being added incorrectly, or a missing root element leading to the child elements being assumed to be root nodes.
const TInt | KErrXMLCorruptFile |
Error code that indicates spurious characters have been found.
This may occur as the result of a missing or an extra attribute or element delimiter.
const TInt | KErrXMLIllegalCharacter |
Error code that indicates a built-in entity or element / attribute delimiter is at an inappropriate place.
const TInt | KErrXMLBadEntity |
const TInt | KErrXMLInvalidElement |
Error code that indicates an element was found to be invalid by the DTD
const TInt | KErrXMLInvalidAttribute |
Error code that indicates an attribute was found to be invalid by the DTD
Severity levels for XML composer and parser errors.
Enumerator | Value | Description |
---|---|---|
EXMLFatal |
Fatal error. | |
EXMLIndeterminate |
Severity level cannot be determined. | |
EXMLWorkable |
Recoverable error. | |
EXMLNone |
No error. |
const TLitC< sizeof(L"\r\n")/2 > | KNewLine | [static] |
const TLitC< sizeof(L";")/2 > | KXMLSemiColon | [static] |
const TLitC< sizeof(L"&#")/2 > | KXMLDecimalId | [static] |
const TLitC< sizeof(L"&#x")/2 > | KXMLHexidecimalId | [static] |
const | TLitC< sizeof(L"<!--")/2 >KXMLStartComment={sizeof(L"<!--")/2-1, L"<!--"};const static TLitC< sizeof(L"-->")/2 >KXMLEndComment={sizeof(L"-->")/2-1, L"--> | [static] |