![]() |
Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
|
This class contains helper functions related to XML, for validating character classes, productions in the XML specification, and so on. More...
#include <qxmlutils_p.h>
Static Public Member Functions | |
static bool | isEncName (QStringView encName) |
static bool | isChar (const char32_t c) |
static bool | isNameChar (const QChar c) |
static bool | isLetter (const QChar c) |
static bool | isNCName (QStringView ncName) |
static bool | isPublicID (QStringView candidate) |
This class contains helper functions related to XML, for validating character classes, productions in the XML specification, and so on.
Definition at line 33 of file qxmlutils_p.h.
|
static |
Determines whether c is a valid instance of production [2]Char in the XML 1.0 specification. If it is, true is returned, otherwise false.
Definition at line 239 of file qxmlutils.cpp.
|
static |
Determines whether encName is a valid instance of production [81]EncName in the XML 1.0 specification. If it is, true is returned, otherwise false.
Definition at line 199 of file qxmlutils.cpp.
|
static |
Determines whether c is a valid instance of production [84]Letter in the XML 1.0 specification. If it is, true is returned, otherwise false.
Definition at line 225 of file qxmlutils.cpp.
|
static |
Determines whether c is a valid instance of production [4]NameChar in the XML 1.0 specification. If it is, true is returned, otherwise false.
Definition at line 261 of file qxmlutils.cpp.
|
static |
Determines whether c is a valid instance of production [4]NCName in the XML 1.0 Namespaces specification. If it is, true is returned, otherwise false.
Definition at line 336 of file qxmlutils.cpp.
|
static |
Determines whether c is a valid instance of production [12] PubidLiteral in the XML 1.0 specification. If it is, true is returned, otherwise false.
Definition at line 284 of file qxmlutils.cpp.