Static Public Member Functions | |
String concatenation functions | |
| static void | catString (char *const target, const char *const src) |
| Concatenates two strings. | |
| static void | catString (XMLCh *const target, const XMLCh *const src) |
| Concatenates two strings. | |
String comparison functions | |
| static int | compareIString (const char *const str1, const char *const str2) |
Lexicographically compares lowercase versions of str1 and str2 and returns a value indicating their relationship. | |
| static int | compareIString (const XMLCh *const str1, const XMLCh *const str2) |
Lexicographically compares lowercase versions of str1 and str2 and returns a value indicating their relationship. | |
| static int | compareIStringASCII (const XMLCh *const str1, const XMLCh *const str2) |
Lexicographically compares lowercase versions of str1 and str2 and returns a value indicating their relationship. | |
| static int | compareNString (const char *const str1, const char *const str2, const unsigned int count) |
Lexicographically compares, at most, the first count characters in str1 and str2 and returns a value indicating the relationship between the substrings. | |
| static int | compareNString (const XMLCh *const str1, const XMLCh *const str2, const unsigned int count) |
Lexicographically compares, at most, the first count characters in str1 and str2 and returns a value indicating the relationship between the substrings. | |
| static int | compareNIString (const char *const str1, const char *const str2, const unsigned int count) |
Lexicographically compares, at most, the first count characters in str1 and str2 without regard to case and returns a value indicating the relationship between the substrings. | |
| static int | compareNIString (const XMLCh *const str1, const XMLCh *const str2, const unsigned int count) |
Lexicographically compares, at most, the first count characters in str1 and str2 without regard to case and returns a value indicating the relationship between the substrings. | |
| static int | compareString (const char *const str1, const char *const str2) |
Lexicographically compares str1 and str2 and returns a value indicating their relationship. | |
| static int | compareString (const XMLCh *const str1, const XMLCh *const str2) |
Lexicographically compares str1 and str2 and returns a value indicating their relationship. | |
| static bool | equals (const XMLCh *const str1, const XMLCh *const str2) |
compares str1 and str2 | |
| static bool | equals (const char *const str1, const char *const str2) |
| static bool | regionMatches (const XMLCh *const str1, const int offset1, const XMLCh *const str2, const int offset2, const unsigned int charCount) |
Lexicographically compares str1 and str2 regions and returns true if they are equal, otherwise false. | |
| static bool | regionIMatches (const XMLCh *const str1, const int offset1, const XMLCh *const str2, const int offset2, const unsigned int charCount) |
Lexicographically compares str1 and str2 regions without regard to case and returns true if they are equal, otherwise false. | |
String copy functions | |
| static void | copyString (char *const target, const char *const src) |
Copies src, including the terminating null character, to the location specified by target. | |
| static void | copyString (XMLCh *const target, const XMLCh *const src) |
Copies src, including the terminating null character, to the location specified by target. | |
| static bool | copyNString (XMLCh *const target, const XMLCh *const src, const unsigned int maxChars) |
Copies src, upto a fixed number of characters, to the location specified by target. | |
Hash functions | |
| static unsigned int | hash (const char *const toHash, const unsigned int hashModulus, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager) |
| Hashes a string given a modulus. | |
| static unsigned int | hash (const XMLCh *const toHash, const unsigned int hashModulus, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager) |
| Hashes a string given a modulus. | |
| static unsigned int | hashN (const XMLCh *const toHash, const unsigned int numChars, const unsigned int hashModulus, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager) |
| Hashes a string given a modulus taking a maximum number of characters as the limit. | |
Search functions | |
| static int | indexOf (const char *const toSearch, const char ch) |
| Provides the index of the first occurance of a character within a string. | |
| static int | indexOf (const XMLCh *const toSearch, const XMLCh ch) |
| Provides the index of the first occurance of a character within a string. | |
| static int | indexOf (const char *const toSearch, const char chToFind, const unsigned int fromIndex, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager) |
| Provides the index of the first occurance of a character within a string starting from a given index. | |
| static int | indexOf (const XMLCh *const toSearch, const XMLCh chToFind, const unsigned int fromIndex, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager) |
| Provides the index of the first occurance of a character within a string starting from a given index. | |
| static int | lastIndexOf (const char *const toSearch, const char ch) |
| Provides the index of the last occurance of a character within a string. | |
| static int | lastIndexOf (const XMLCh *const toSearch, const XMLCh ch) |
| Provides the index of the last occurance of a character within a string. | |
| static int | lastIndexOf (const XMLCh ch, const XMLCh *const toSearch, const unsigned int toSearchLen) |
| Provides the index of the last occurance of a character within a string. | |
| static int | lastIndexOf (const char *const toSearch, const char chToFind, const unsigned int fromIndex, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager) |
| Provides the index of the last occurance of a character within a string starting backward from a given index. | |
| static int | lastIndexOf (const XMLCh *const toSearch, const XMLCh ch, const unsigned int fromIndex, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager) |
| Provides the index of the last occurance of a character within a string starting backward from a given index. | |
Fixed size string movement | |
| static void | moveChars (XMLCh *const targetStr, const XMLCh *const srcStr, const unsigned int count) |
| Moves X number of chars. | |
Substring function | |
| static void | subString (char *const targetStr, const char *const srcStr, const int startIndex, const int endIndex, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager) |
| Create a substring of a given string. | |
| static void | subString (XMLCh *const targetStr, const XMLCh *const srcStr, const int startIndex, const int endIndex, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager) |
| Create a substring of a given string. | |
| static void | subString (XMLCh *const targetStr, const XMLCh *const srcStr, const int startIndex, const int endIndex, const int srcStrLength, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager) |
| Create a substring of a given string. | |
Replication function | |
| static char * | replicate (const char *const toRep) |
| Replicates a string NOTE: The returned buffer is dynamically allocated and is the responsibility of the caller to delete it when not longer needed. | |
| static char * | replicate (const char *const toRep, MemoryManager *const manager) |
| Replicates a string NOTE: The returned buffer is allocated with the MemoryManager. | |
| static XMLCh * | replicate (const XMLCh *const toRep) |
| Replicates a string NOTE: The returned buffer is dynamically allocated and is the responsibility of the caller to delete it when not longer needed. | |
| static XMLCh * | replicate (const XMLCh *const toRep, MemoryManager *const manager) |
| Replicates a string NOTE: The returned buffer is allocated with the MemoryManager. | |
String query function | |
| static bool | startsWith (const char *const toTest, const char *const prefix) |
| Tells if the sub-string appears within a string at the beginning. | |
| static bool | startsWith (const XMLCh *const toTest, const XMLCh *const prefix) |
| Tells if the sub-string appears within a string at the beginning. | |
| static bool | startsWithI (const char *const toTest, const char *const prefix) |
| Tells if the sub-string appears within a string at the beginning without regard to case. | |
| static bool | startsWithI (const XMLCh *const toTest, const XMLCh *const prefix) |
| Tells if the sub-string appears within a string at the beginning without regard to case. | |
| static bool | endsWith (const XMLCh *const toTest, const XMLCh *const suffix) |
| Tells if the sub-string appears within a string at the end. | |
| static const XMLCh * | findAny (const XMLCh *const toSearch, const XMLCh *const searchList) |
| Tells if a string has any occurance of any character of another string within itself. | |
| static XMLCh * | findAny (XMLCh *const toSearch, const XMLCh *const searchList) |
| Tells if a string has any occurance of any character of another string within itself. | |
| static int | patternMatch (const XMLCh *const toSearch, const XMLCh *const pattern) |
| Tells if a string has pattern within itself. | |
| static unsigned int | stringLen (const char *const src) |
| Get the length of the string. | |
| static unsigned int | stringLen (const XMLCh *const src) |
| Get the length of the string. | |
| static bool | isValidNOTATION (const XMLCh *const name, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager) |
| Checks whether an name is a valid NOTATION according to XML 1.0. | |
| static bool | isValidNCName (const XMLCh *const name) |
| Deprecated: please use XMLChar1_0::isValidNCName. | |
| static bool | isValidName (const XMLCh *const name) |
| Deprecated: please use XMLChar1_0::isValidName. | |
| static bool | isValidEncName (const XMLCh *const name) |
| Checks whether an name is a valid EncName. | |
| static bool | isValidQName (const XMLCh *const name) |
| Deprecated: please use XMLChar1_0::isValidQName. | |
| static bool | isAlpha (XMLCh const theChar) |
| Checks whether a character is within [a-zA-Z]. | |
| static bool | isDigit (XMLCh const theChar) |
| Checks whether a character is within [0-9]. | |
| static bool | isAlphaNum (XMLCh const theChar) |
| Checks whether a character is within [0-9a-zA-Z]. | |
| static bool | isHex (XMLCh const theChar) |
| Checks whether a character is within [0-9a-fA-F]. | |
| static bool | isAllWhiteSpace (const XMLCh *const toCheck) |
| Deprecated: please use XMLChar1_0::isAllWhiteSpace. | |
| static bool | isInList (const XMLCh *const toFind, const XMLCh *const enumList) |
| Find is the string appears in the enum list. | |
Conversion functions | |
| static void | binToText (const unsigned int toFormat, char *const toFill, const unsigned int maxChars, const unsigned int radix, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager) |
| Converts binary data to a text string based a given radix. | |
| static void | binToText (const unsigned int toFormat, XMLCh *const toFill, const unsigned int maxChars, const unsigned int radix, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager) |
| Converts binary data to a text string based a given radix. | |
| static void | binToText (const unsigned long toFormat, char *const toFill, const unsigned int maxChars, const unsigned int radix, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager) |
| Converts binary data to a text string based a given radix. | |
| static void | binToText (const unsigned long toFormat, XMLCh *const toFill, const unsigned int maxChars, const unsigned int radix, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager) |
| Converts binary data to a text string based a given radix. | |
| static void | binToText (const long toFormat, char *const toFill, const unsigned int maxChars, const unsigned int radix, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager) |
| Converts binary data to a text string based a given radix. | |
| static void | binToText (const long toFormat, XMLCh *const toFill, const unsigned int maxChars, const unsigned int radix, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager) |
| Converts binary data to a text string based a given radix. | |
| static void | binToText (const int toFormat, char *const toFill, const unsigned int maxChars, const unsigned int radix, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager) |
| Converts binary data to a text string based a given radix. | |
| static void | binToText (const int toFormat, XMLCh *const toFill, const unsigned int maxChars, const unsigned int radix, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager) |
| Converts binary data to a text string based a given radix. | |
| static bool | textToBin (const XMLCh *const toConvert, unsigned int &toFill, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager) |
| Converts a string of decimal chars to a binary value. | |
| static int | parseInt (const XMLCh *const toConvert, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager) |
| Converts a string of decimal chars to a binary value. | |
| static void | cut (XMLCh *const toCutFrom, const unsigned int count) |
| Cut leading chars from a string. | |
| static char * | transcode (const XMLCh *const toTranscode) |
| Transcodes a string to native code-page. | |
| static char * | transcode (const XMLCh *const toTranscode, MemoryManager *const manager) |
| static bool | transcode (const XMLCh *const toTranscode, char *const toFill, const unsigned int maxChars, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager) |
| Transcodes a string to native code-page. | |
| static XMLCh * | transcode (const char *const toTranscode) |
| Transcodes a string to native code-page. | |
| static XMLCh * | transcode (const char *const toTranscode, MemoryManager *const manager) |
| static bool | transcode (const char *const toTranscode, XMLCh *const toFill, const unsigned int maxChars, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager) |
| Transcodes a string to native code-page. | |
| static void | trim (char *const toTrim) |
| Trims off extra space characters from the start and end of the string, moving the non-space string content back to the start. | |
| static void | trim (XMLCh *const toTrim) |
| Trims off extra space characters from the start and end of the string, moving the non-space string content back to the start. | |
| static BaseRefVectorOf< XMLCh > * | tokenizeString (const XMLCh *const tokenizeSrc, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager) |
| Break a string into tokens with space as delimiter, and stored in a string vector. | |
Formatting functions | |
| static XMLCh * | makeUName (const XMLCh *const pszURI, const XMLCh *const pszName) |
| Creates a UName from a URI and base name. | |
| static unsigned int | replaceTokens (XMLCh *const errText, const unsigned int maxChars, const XMLCh *const text1, const XMLCh *const text2, const XMLCh *const text3, const XMLCh *const text4, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager) |
| Internal function to perform token replacement for strings. | |
| static void | upperCase (XMLCh *const toUpperCase) |
| Converts a string to uppercase. | |
| static void | upperCaseASCII (XMLCh *const toUpperCase) |
| Converts a string to uppercase The routine only uppercases A to Z (other characters not changed). | |
| static void | lowerCase (XMLCh *const toLowerCase) |
| Converts a string to lowercase. | |
| static void | lowerCaseASCII (XMLCh *const toLowerCase) |
| Converts a string to lowercase The routine only lowercases a to z (other characters not changed). | |
| static bool | isWSReplaced (const XMLCh *const toCheck) |
| Check if string is WhiteSpace:replace. | |
| static bool | isWSCollapsed (const XMLCh *const toCheck) |
| Check if string is WhiteSpace:collapse. | |
| static void | replaceWS (XMLCh *const toConvert, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager) |
| Replace whitespace. | |
| static void | collapseWS (XMLCh *const toConvert, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager) |
| Collapse whitespace. | |
| static void | removeWS (XMLCh *const toConvert, MemoryManager *const manager=XMLPlatformUtils::fgMemoryManager) |
| Remove whitespace. | |
| static void | removeChar (const XMLCh *const srcString, const XMLCh &toRemove, XMLBuffer &dstBuffer) |
| Remove character. | |
| static void | fixURI (const XMLCh *const str, XMLCh *const target) |
| Fixes a platform dependent absolute path filename to standard URI form. | |
String Memory Management functions | |
| static void | release (char **buf) |
| Release the parameter char string that was allocated by the implementation (i.e.the parser). | |
| static void | release (XMLCh **buf) |
| Release the parameter XMLCh string that was allocated by the implementation (i.e.the parser). | |
| static void | release (XMLByte **buf) |
| Release the parameter XMLByte string that was allocated by the implementation (i.e.the parser). | |
| static void | release (void **buf, MemoryManager *const manager) |
| Release the parameter string that was allocated using the version of XMLString::transcode that accepts a MemoryManager. | |
Friends | |
| class | XMLPlatformUtils |
This class is Unicode compliant. This class is designed primarily for internal use, but due to popular demand, it is being made publicly available. Users of this class must understand that this is not an officially supported class. All public methods of this class are static functions.
| static void XMLString::catString | ( | char *const | target, | |
| const char *const | src | |||
| ) | [static] |
Concatenates two strings.
catString appends src to target and terminates the resulting string with a null character. The initial character of src overwrites the terminating character of target .
No overflow checking is performed when strings are copied or appended. The behavior of catString is undefined if source and destination strings overlap.
| target | Null-terminated destination string | |
| src | Null-terminated source string |
| static void XMLString::catString | ( | XMLCh *const | target, | |
| const XMLCh *const | src | |||
| ) | [static] |
Concatenates two strings.
catString appends src to target and terminates the resulting string with a null character. The initial character of src overwrites the terminating character of target. No overflow checking is performed when strings are copied or appended. The behavior of catString is undefined if source and destination strings overlap.
| target | Null-terminated destination string | |
| src | Null-terminated source string |
| static int XMLString::compareIString | ( | const char *const | str1, | |
| const char *const | str2 | |||
| ) | [static] |
Lexicographically compares lowercase versions of str1 and str2 and returns a value indicating their relationship.
| str1 | Null-terminated string to compare | |
| str2 | Null-terminated string to compare |
str1 to str2 as follows Less than 0 means str1 is less than str2 Equal to 0 means str1 is identical to str2 Greater than 0 means str1 is more than str2 | static int XMLString::compareIString | ( | const XMLCh *const | str1, | |
| const XMLCh *const | str2 | |||
| ) | [static] |
Lexicographically compares lowercase versions of str1 and str2 and returns a value indicating their relationship.
| str1 | Null-terminated string to compare | |
| str2 | Null-terminated string to compare |
str1 to str2 as follows Less than 0 means str1 is less than str2 Equal to 0 means str1 is identical to str2 Greater than 0 means str1 is more than str2 | static int XMLString::compareIStringASCII | ( | const XMLCh *const | str1, | |
| const XMLCh *const | str2 | |||
| ) | [static] |
Lexicographically compares lowercase versions of str1 and str2 and returns a value indicating their relationship.
The routine only lowercases A to Z.
| str1 | Null-terminated ASCII string to compare | |
| str2 | Null-terminated ASCII string to compare |
str1 to str2 as follows Less than 0 means str1 is less than str2 Equal to 0 means str1 is identical to str2 Greater than 0 means str1 is more than str2 | static int XMLString::compareNString | ( | const char *const | str1, | |
| const char *const | str2, | |||
| const unsigned int | count | |||
| ) | [static] |
Lexicographically compares, at most, the first count characters in str1 and str2 and returns a value indicating the relationship between the substrings.
| str1 | Null-terminated string to compare | |
| str2 | Null-terminated string to compare | |
| count | The number of characters to compare |
str1 to str2 as follows Less than 0 means str1 is less than str2 Equal to 0 means str1 is identical to str2 Greater than 0 means str1 is more than str2 | static int XMLString::compareNString | ( | const XMLCh *const | str1, | |
| const XMLCh *const | str2, | |||
| const unsigned int | count | |||
| ) | [static] |
Lexicographically compares, at most, the first count characters in str1 and str2 and returns a value indicating the relationship between the substrings.
| str1 | Null-terminated string to compare | |
| str2 | Null-terminated string to compare | |
| count | The number of characters to compare |
str1 to str2 as follows Less than 0 means str1 is less than str2 Equal to 0 means str1 is identical to str2 Greater than 0 means str1 is more than str2 | static int XMLString::compareNIString | ( | const char *const | str1, | |
| const char *const | str2, | |||
| const unsigned int | count | |||
| ) | [static] |
Lexicographically compares, at most, the first count characters in str1 and str2 without regard to case and returns a value indicating the relationship between the substrings.
| str1 | Null-terminated string to compare | |
| str2 | Null-terminated string to compare | |
| count | The number of characters to compare |
str1 to str2 as follows Less than 0 means str1 is less than str2 Equal to 0 means str1 is identical to str2 Greater than 0 means str1 is more than str2 | static int XMLString::compareNIString | ( | const XMLCh *const | str1, | |
| const XMLCh *const | str2, | |||
| const unsigned int | count | |||
| ) | [static] |
Lexicographically compares, at most, the first count characters in str1 and str2 without regard to case and returns a value indicating the relationship between the substrings.
| str1 | Null-terminated string to compare | |
| str2 | Null-terminated string to compare | |
| count | The number of characters to compare |
str1 to str2 as follows Less than 0 means str1 is less than str2 Equal to 0 means str1 is identical to str2 Greater than 0 means str1 is more than str2 | static int XMLString::compareString | ( | const char *const | str1, | |
| const char *const | str2 | |||
| ) | [static] |
Lexicographically compares str1 and str2 and returns a value indicating their relationship.
| str1 | Null-terminated string to compare | |
| str2 | Null-terminated string to compare |
str1 to str2 as follows Less than 0 means str1 is less than str2 Equal to 0 means str1 is identical to str2 Greater than 0 means str1 is more than str2 | static int XMLString::compareString | ( | const XMLCh *const | str1, | |
| const XMLCh *const | str2 | |||
| ) | [static] |
Lexicographically compares str1 and str2 and returns a value indicating their relationship.
| str1 | Null-terminated string to compare | |
| str2 | Null-terminated string to compare |
str1 to str2 as follows Less than 0 means str1 is less than str2 Equal to 0 means str1 is identical to str2 Greater than 0 means str1 is more than str2 | bool XMLString::equals | ( | const XMLCh *const | str1, | |
| const XMLCh *const | str2 | |||
| ) | [static] |
compares str1 and str2
| str1 | Null-terminated string to compare | |
| str2 | Null-terminated string to compare |
| bool XMLString::equals | ( | const char *const | str1, | |
| const char *const | str2 | |||
| ) | [static] |
| static bool XMLString::regionMatches | ( | const XMLCh *const | str1, | |
| const int | offset1, | |||
| const XMLCh *const | str2, | |||
| const int | offset2, | |||
| const unsigned int | charCount | |||
| ) | [static] |
Lexicographically compares str1 and str2 regions and returns true if they are equal, otherwise false.
A substring of str1 is compared to a substring of str2. The result is true if these substrings represent identical character sequences. The substring of str1 to be compared begins at offset1 and has length charCount. The substring of str2 to be compared begins at offset2 and has length charCount. The result is false if and only if at least one of the following is true: offset1 is negative. offset2 is negative. offset1+charCount is greater than the length of str1. offset2+charCount is greater than the length of str2. There is some nonnegative integer k less than charCount such that: str1.charAt(offset1+k) != str2.charAt(offset2+k)
| str1 | Null-terminated string to compare | |
| offset1 | Starting offset of str1 | |
| str2 | Null-terminated string to compare | |
| offset2 | Starting offset of str2 | |
| charCount | The number of characters to compare |
str1 exactly matches the specified subregion of str2>; false otherwise. | static bool XMLString::regionIMatches | ( | const XMLCh *const | str1, | |
| const int | offset1, | |||
| const XMLCh *const | str2, | |||
| const int | offset2, | |||
| const unsigned int | charCount | |||
| ) | [static] |
Lexicographically compares str1 and str2 regions without regard to case and returns true if they are equal, otherwise false.
A substring of str1 is compared to a substring of str2. The result is true if these substrings represent identical character sequences. The substring of str1 to be compared begins at offset1 and has length charCount. The substring of str2 to be compared begins at offset2 and has length charCount. The result is false if and only if at least one of the following is true: offset1 is negative. offset2 is negative. offset1+charCount is greater than the length of str1. offset2+charCount is greater than the length of str2. There is some nonnegative integer k less than charCount such that: str1.charAt(offset1+k) != str2.charAt(offset2+k)
| str1 | Null-terminated string to compare | |
| offset1 | Starting offset of str1 | |
| str2 | Null-terminated string to compare | |
| offset2 | Starting offset of str2 | |
| charCount | The number of characters to compare |
str1 exactly matches the specified subregion of str2>; false otherwise. | static void XMLString::copyString | ( | char *const | target, | |
| const char *const | src | |||
| ) | [static] |
Copies src, including the terminating null character, to the location specified by target.
No overflow checking is performed when strings are copied or appended. The behavior of strcpy is undefined if the source and destination strings overlap.
| target | Destination string | |
| src | Null-terminated source string |
| static void XMLString::copyString | ( | XMLCh *const | target, | |
| const XMLCh *const | src | |||
| ) | [static] |
Copies src, including the terminating null character, to the location specified by target.
No overflow checking is performed when strings are copied or appended. The behavior of copyString is undefined if the source and destination strings overlap.
| target | Destination string | |
| src | Null-terminated source string |
| static bool XMLString::copyNString | ( | XMLCh *const | target, | |
| const XMLCh *const | src, | |||
| const unsigned int | maxChars | |||
| ) | [static] |
Copies src, upto a fixed number of characters, to the location specified by target.
No overflow checking is performed when strings are copied or appended. The behavior of copyNString is undefined if the source and destination strings overlap.
| target | Destination string. The size of the buffer should atleast be 'maxChars + 1'. | |
| src | Null-terminated source string | |
| maxChars | The maximum number of characters to copy |
| static unsigned int XMLString::hash | ( | const char *const | toHash, | |
| const unsigned int | hashModulus, | |||
| MemoryManager *const | manager = XMLPlatformUtils::fgMemoryManager | |||
| ) | [static] |
Hashes a string given a modulus.
| toHash | The string to hash | |
| hashModulus | The divisor to be used for hashing | |
| manager | The MemoryManager to use to allocate objects |
| unsigned int XMLString::hash | ( | const XMLCh *const | toHash, | |
| const unsigned int | hashModulus, | |||
| MemoryManager *const | manager = XMLPlatformUtils::fgMemoryManager | |||
| ) | [static] |
Hashes a string given a modulus.
| toHash | The string to hash | |
| hashModulus | The divisor to be used for hashing | |
| manager | The MemoryManager to use to allocate objects |
| static unsigned int XMLString::hashN | ( | const XMLCh *const | toHash, | |
| const unsigned int | numChars, | |||
| const unsigned int | hashModulus, | |||
| MemoryManager *const | manager = XMLPlatformUtils::fgMemoryManager | |||
| ) | [static] |
Hashes a string given a modulus taking a maximum number of characters as the limit.
| toHash | The string to hash | |
| numChars | The maximum number of characters to consider for hashing | |
| hashModulus | The divisor to be used for hashing | |
| manager | The MemoryManager to use to allocate objects |
| static int XMLString::indexOf | ( | const char *const | toSearch, | |
| const char | ch | |||
| ) | [static] |
Provides the index of the first occurance of a character within a string.
| toSearch | The string to search | |
| ch | The character to search within the string |
| static int XMLString::indexOf | ( | const XMLCh *const | toSearch, | |
| const XMLCh | ch | |||
| ) | [static] |
Provides the index of the first occurance of a character within a string.
| toSearch | The string to search | |
| ch | The character to search within the string |
| static int XMLString::indexOf | ( | const char *const | toSearch, | |
| const char | chToFind, | |||
| const unsigned int | fromIndex, | |||
| MemoryManager *const | manager = XMLPlatformUtils::fgMemoryManager | |||
| ) | [static] |
Provides the index of the first occurance of a character within a string starting from a given index.
| toSearch | The string to search | |
| chToFind | The character to search within the string | |
| fromIndex | The index to start searching from | |
| manager | The MemoryManager to use to allocate objects |
| static int XMLString::indexOf | ( | const XMLCh *const | toSearch, | |
| const XMLCh | chToFind, | |||
| const unsigned int | fromIndex, | |||
| MemoryManager *const | manager = XMLPlatformUtils::fgMemoryManager | |||
| ) | [static] |
Provides the index of the first occurance of a character within a string starting from a given index.
| toSearch | The string to search | |
| chToFind | The character to search within the string | |
| fromIndex | The index to start searching from | |
| manager | The MemoryManager to use to allocate objects |
| static int XMLString::lastIndexOf | ( | const char *const | toSearch, | |
| const char | ch | |||
| ) | [static] |
Provides the index of the last occurance of a character within a string.
| toSearch | The string to search | |
| ch | The character to search within the string |
| int XMLString::lastIndexOf | ( | const XMLCh *const | toSearch, | |
| const XMLCh | ch | |||
| ) | [static] |
Provides the index of the last occurance of a character within a string.
| toSearch | The string to search | |
| ch | The character to search within the string |
| static int XMLString::lastIndexOf | ( | const XMLCh | ch, | |
| const XMLCh *const | toSearch, | |||
| const unsigned int | toSearchLen | |||
| ) | [static] |
Provides the index of the last occurance of a character within a string.
| ch | The character to search within the string | |
| toSearch | The string to search | |
| toSearchLen | The length of the string to search |
| static int XMLString::lastIndexOf | ( | const char *const | toSearch, | |
| const char | chToFind, | |||
| const unsigned int | fromIndex, | |||
| MemoryManager *const | manager = XMLPlatformUtils::fgMemoryManager | |||
| ) | [static] |
Provides the index of the last occurance of a character within a string starting backward from a given index.
| toSearch | The string to search | |
| chToFind | The character to search within the string | |
| fromIndex | The index to start backward search from | |
| manager | The MemoryManager to use to allocate objects |
| static int XMLString::lastIndexOf | ( | const XMLCh *const | toSearch, | |
| const XMLCh | ch, | |||
| const unsigned int | fromIndex, | |||
| MemoryManager *const | manager = XMLPlatformUtils::fgMemoryManager | |||
| ) | [static] |
Provides the index of the last occurance of a character within a string starting backward from a given index.
| toSearch | The string to search | |
| ch | The character to search within the string | |
| fromIndex | The index to start backward search from | |
| manager | The MemoryManager to use to allocate objects |
| void XMLString::moveChars | ( | XMLCh *const | targetStr, | |
| const XMLCh *const | srcStr, | |||
| const unsigned int | count | |||
| ) | [static] |
Moves X number of chars.
| targetStr | The string to copy the chars to | |
| srcStr | The string to copy the chars from | |
| count | The number of chars to move |
| static void XMLString::subString | ( | char *const | targetStr, | |
| const char *const | srcStr, | |||
| const int | startIndex, | |||
| const int | endIndex, | |||
| MemoryManager *const | manager = XMLPlatformUtils::fgMemoryManager | |||
| ) | [static] |
Create a substring of a given string.
The substring begins at the specified beginIndex and extends to the character at index endIndex - 1.
| targetStr | The string to copy the chars to | |
| srcStr | The string to copy the chars from | |
| startIndex | beginning index, inclusive. | |
| endIndex | the ending index, exclusive. | |
| manager | The MemoryManager to use to allocate objects |
| static void XMLString::subString | ( | XMLCh *const | targetStr, | |
| const XMLCh *const | srcStr, | |||
| const int | startIndex, | |||
| const int | endIndex, | |||
| MemoryManager *const | manager = XMLPlatformUtils::fgMemoryManager | |||
| ) | [static] |
Create a substring of a given string.
The substring begins at the specified beginIndex and extends to the character at index endIndex - 1.
| targetStr | The string to copy the chars to | |
| srcStr | The string to copy the chars from | |
| startIndex | beginning index, inclusive. | |
| endIndex | the ending index, exclusive. | |
| manager | The MemoryManager to use to allocate objects |
| static void XMLString::subString | ( | XMLCh *const | targetStr, | |
| const XMLCh *const | srcStr, | |||
| const int | startIndex, | |||
| const int | endIndex, | |||
| const int | srcStrLength, | |||
| MemoryManager *const | manager = XMLPlatformUtils::fgMemoryManager | |||
| ) | [static] |
Create a substring of a given string.
The substring begins at the specified beginIndex and extends to the character at index endIndex - 1.
| targetStr | The string to copy the chars to | |
| srcStr | The string to copy the chars from | |
| startIndex | beginning index, inclusive. | |
| endIndex | the ending index, exclusive. | |
| srcStrLength | the length of srcStr | |
| manager | The MemoryManager to use to allocate objects |
| static char* XMLString::replicate | ( | const char *const | toRep | ) | [static] |
Replicates a string NOTE: The returned buffer is dynamically allocated and is the responsibility of the caller to delete it when not longer needed.
You can call XMLString::release to release this returned buffer.
| toRep | The string to replicate |
| static char* XMLString::replicate | ( | const char *const | toRep, | |
| MemoryManager *const | manager | |||
| ) | [static] |
Replicates a string NOTE: The returned buffer is allocated with the MemoryManager.
It is the responsibility of the caller to delete it when not longer needed.
| toRep | The string to replicate | |
| manager | The MemoryManager to use to allocate the string |
| static XMLCh* XMLString::replicate | ( | const XMLCh *const | toRep | ) | [static] |
Replicates a string NOTE: The returned buffer is dynamically allocated and is the responsibility of the caller to delete it when not longer needed.
You can call XMLString::release to release this returned buffer.
| toRep | The string to replicate |
| XMLCh * XMLString::replicate | ( | const XMLCh *const | toRep, | |
| MemoryManager *const | manager | |||
| ) | [static] |
Replicates a string NOTE: The returned buffer is allocated with the MemoryManager.
It is the responsibility of the caller to delete it when not longer needed.
| toRep | The string to replicate | |
| manager | The MemoryManager to use to allocate the string |
| static bool XMLString::startsWith | ( | const char *const | toTest, | |
| const char *const | prefix | |||
| ) | [static] |
Tells if the sub-string appears within a string at the beginning.
| toTest | The string to test | |
| prefix | The sub-string that needs to be checked |
toTest, else false | bool XMLString::startsWith | ( | const XMLCh *const | toTest, | |
| const XMLCh *const | prefix | |||
| ) | [static] |
Tells if the sub-string appears within a string at the beginning.
| toTest | The string to test | |
| prefix | The sub-string that needs to be checked |
toTest, else false | static bool XMLString::startsWithI | ( | const char *const | toTest, | |
| const char *const | prefix | |||
| ) | [static] |
Tells if the sub-string appears within a string at the beginning without regard to case.
| toTest | The string to test | |
| prefix | The sub-string that needs to be checked |
toTest, else false | bool XMLString::startsWithI | ( | const XMLCh *const | toTest, | |
| const XMLCh *const | prefix | |||
| ) | [static] |
Tells if the sub-string appears within a string at the beginning without regard to case.
| toTest | The string to test | |
| prefix | The sub-string that needs to be checked |
toTest, else false | bool XMLString::endsWith | ( | const XMLCh *const | toTest, | |
| const XMLCh *const | suffix | |||
| ) | [static] |
Tells if the sub-string appears within a string at the end.
| toTest | The string to test | |
| suffix | The sub-string that needs to be checked |
toTest, else false | static const XMLCh* XMLString::findAny | ( | const XMLCh *const | toSearch, | |
| const XMLCh *const | searchList | |||
| ) | [static] |
Tells if a string has any occurance of any character of another string within itself.
| toSearch | The string to be searched | |
| searchList | The string from which characters to be searched for are drawn |
| static XMLCh* XMLString::findAny | ( | XMLCh *const | toSearch, | |
| const XMLCh *const | searchList | |||
| ) | [static] |
Tells if a string has any occurance of any character of another string within itself.
| toSearch | The string to be searched | |
| searchList | The string from which characters to be searched for are drawn |
| static int XMLString::patternMatch | ( | const XMLCh *const | toSearch, | |
| const XMLCh *const | pattern | |||
| ) | [static] |
Tells if a string has pattern within itself.
| toSearch | The string to be searched | |
| pattern | The pattern to be located within the string |
| static unsigned int XMLString::stringLen | ( | const char *const | src | ) | [static] |
Get the length of the string.
| src | The string whose length is to be determined |
| unsigned int XMLString::stringLen | ( | const XMLCh *const | src | ) | [static] |
Get the length of the string.
| src | The string whose length is to be determined |
| static bool XMLString::isValidNOTATION | ( | const XMLCh *const | name, | |
| MemoryManager *const | manager = XMLPlatformUtils::fgMemoryManager | |||
| ) | [static] |
Checks whether an name is a valid NOTATION according to XML 1.0.
| name | The string to check its NOTATION validity | |
| manager | The memory manager |
| static bool XMLString::isValidNCName | ( | const XMLCh *const | name | ) | [static] |
Deprecated: please use XMLChar1_0::isValidNCName.
Checks whether an name is a valid NCName according to XML 1.0
| name | The string to check its NCName validity |
| static bool XMLString::isValidName | ( | const XMLCh *const | name | ) | [static] |
Deprecated: please use XMLChar1_0::isValidName.
Checks whether an name is a valid Name according to XML 1.0
| name | The string to check its Name validity |
| static bool XMLString::isValidEncName | ( | const XMLCh *const | name | ) | [static] |
Checks whether an name is a valid EncName.
| name | The string to check its EncName validity |
| static bool XMLString::isValidQName | ( | const XMLCh *const | name | ) | [static] |
Deprecated: please use XMLChar1_0::isValidQName.
Checks whether an name is a valid QName according to XML 1.0
| name | The string to check its QName validity |
| static bool XMLString::isAlpha | ( | XMLCh const | theChar | ) | [static] |
Checks whether a character is within [a-zA-Z].
| theChar | the character to check |
| static bool XMLString::isDigit | ( | XMLCh const | theChar | ) | [static] |
Checks whether a character is within [0-9].
| theChar | the character to check |
| static bool XMLString::isAlphaNum | ( | XMLCh const | theChar | ) | [static] |
Checks whether a character is within [0-9a-zA-Z].
| theChar | the character to check |
| static bool XMLString::isHex | ( | XMLCh const | theChar | ) | [static] |
Checks whether a character is within [0-9a-fA-F].
| theChar | the character to check |
| static bool XMLString::isAllWhiteSpace | ( | const XMLCh *const | toCheck | ) | [static] |
Deprecated: please use XMLChar1_0::isAllWhiteSpace.
Checks whether aa string contains only whitespace according to XML 1.0
| toCheck | the string to check |
| static bool XMLString::isInList | ( | const XMLCh *const | toFind, | |
| const XMLCh *const | enumList | |||
| ) | [static] |
Find is the string appears in the enum list.
| toFind | the string to be found | |
| enumList | the list return true if found |
| static void XMLString::binToText | ( | const unsigned int | toFormat, | |
| char *const | toFill, | |||
| const unsigned int | maxChars, | |||
| const unsigned int | radix, | |||
| MemoryManager *const | manager = XMLPlatformUtils::fgMemoryManager | |||
| ) | [static] |
Converts binary data to a text string based a given radix.
| toFormat | The number to convert | |
| toFill | The buffer that will hold the output on return. The size of this buffer should at least be 'maxChars + 1'. | |
| maxChars | The maximum number of output characters that can be accepted. If the result will not fit, it is an error. | |
| radix | The radix of the input data, based on which the conversion | |
| manager | The MemoryManager to use to allocate objects will be done |
| static void XMLString::binToText | ( | const unsigned int | toFormat, | |
| XMLCh *const | toFill, | |||
| const unsigned int | maxChars, | |||
| const unsigned int | radix, | |||
| MemoryManager *const | manager = XMLPlatformUtils::fgMemoryManager | |||
| ) | [static] |
Converts binary data to a text string based a given radix.
| toFormat | The number to convert | |
| toFill | The buffer that will hold the output on return. The size of this buffer should at least be 'maxChars + 1'. | |
| maxChars | The maximum number of output characters that can be accepted. If the result will not fit, it is an error. | |
| radix | The radix of the input data, based on which the conversion | |
| manager | The MemoryManager to use to allocate objects will be done |
| static void XMLString::binToText | ( | const unsigned long | toFormat, | |
| char *const | toFill, | |||
| const unsigned int | maxChars, | |||
| const unsigned int | radix, | |||
| MemoryManager *const | manager = XMLPlatformUtils::fgMemoryManager | |||
| ) | [static] |
Converts binary data to a text string based a given radix.
| toFormat | The number to convert | |
| toFill | The buffer that will hold the output on return. The size of this buffer should at least be 'maxChars + 1'. | |
| maxChars | The maximum number of output characters that can be accepted. If the result will not fit, it is an error. | |
| radix | The radix of the input data, based on which the conversion | |
| manager | The MemoryManager to use to allocate objects will be done |
| static void XMLString::binToText | ( | const unsigned long | toFormat, | |
| XMLCh *const | toFill, | |||
| const unsigned int | maxChars, | |||
| const unsigned int | radix, | |||
| MemoryManager *const | manager = XMLPlatformUtils::fgMemoryManager | |||
| ) | [static] |
Converts binary data to a text string based a given radix.
| toFormat | The number to convert | |
| toFill | The buffer that will hold the output on return. The size of this buffer should at least be 'maxChars + 1'. | |
| maxChars | The maximum number of output characters that can be accepted. If the result will not fit, it is an error. | |
| radix | The radix of the input data, based on which the conversion | |
| manager | The MemoryManager to use to allocate objects will be done |
| static void XMLString::binToText | ( | const long | toFormat, | |
| char *const | toFill, | |||
| const unsigned int | maxChars, | |||
| const unsigned int | radix, | |||
| MemoryManager *const | manager = XMLPlatformUtils::fgMemoryManager | |||
| ) | [static] |
Converts binary data to a text string based a given radix.
| toFormat | The number to convert | |
| toFill | The buffer that will hold the output on return. The size of this buffer should at least be 'maxChars + 1'. | |
| maxChars | The maximum number of output characters that can be accepted. If the result will not fit, it is an error. | |
| radix | The radix of the input data, based on which the conversion | |
| manager | The MemoryManager to use to allocate objects will be done |
| static void XMLString::binToText | ( | const long | toFormat, | |
| XMLCh *const | toFill, | |||
| const unsigned int | maxChars, | |||
| const unsigned int | radix, | |||
| MemoryManager *const | manager = XMLPlatformUtils::fgMemoryManager | |||
| ) | [static] |
Converts binary data to a text string based a given radix.
| toFormat | The number to convert | |
| toFill | The buffer that will hold the output on return. The size of this buffer should at least be 'maxChars + 1'. | |
| maxChars | The maximum number of output characters that can be accepted. If the result will not fit, it is an error. | |
| radix | The radix of the input data, based on which the conversion | |
| manager | The MemoryManager to use to allocate objects will be done |
| static void XMLString::binToText | ( | const int | toFormat, | |
| char *const | toFill, | |||
| const unsigned int | maxChars, | |||
| const unsigned int | radix, | |||
| MemoryManager *const | manager = XMLPlatformUtils::fgMemoryManager | |||
| ) | [static] |
Converts binary data to a text string based a given radix.
| toFormat | The number to convert | |
| toFill | The buffer that will hold the output on return. The size of this buffer should at least be 'maxChars + 1'. | |
| maxChars | The maximum number of output characters that can be accepted. If the result will not fit, it is an error. | |
| radix | The radix of the input data, based on which the conversion | |
| manager | The MemoryManager to use to allocate objects will be done |
| static void XMLString::binToText | ( | const int | toFormat, | |
| XMLCh *const | toFill, | |||
| const unsigned int | maxChars, | |||
| const unsigned int | radix, | |||
| MemoryManager *const | manager = XMLPlatformUtils::fgMemoryManager | |||
| ) | [static] |
Converts binary data to a text string based a given radix.
| toFormat | The number to convert | |
| toFill | The buffer that will hold the output on return. The size of this buffer should at least be 'maxChars + 1'. | |
| maxChars | The maximum number of output characters that can be accepted. If the result will not fit, it is an error. | |
| radix | The radix of the input data, based on which the conversion | |
| manager | The MemoryManager to use to allocate objects will be done |
| static bool XMLString::textToBin | ( | const XMLCh *const | toConvert, | |
| unsigned int & | toFill, | |||
| MemoryManager *const | manager = XMLPlatformUtils::fgMemoryManager | |||
| ) | [static] |
Converts a string of decimal chars to a binary value.
Note that leading and trailng whitespace is legal and will be ignored but the remainder must be all decimal digits.
| toConvert | The string of digits to convert | |
| toFill | The unsigned int value to fill with the converted value. | |
| manager | The MemoryManager to use to allocate objects |
| static int XMLString::parseInt | ( | const XMLCh *const | toConvert, | |
| MemoryManager *const | manager = XMLPlatformUtils::fgMemoryManager | |||
| ) | [static] |
Converts a string of decimal chars to a binary value.
Note that leading and trailng whitespace is legal and will be ignored,
Only one and either of (+,-) after the leading whitespace, before any other characters are allowed.
but the remainder must be all decimal digits.
| toConvert | The string of digits to convert | |
| manager | The MemoryManager to use to allocate objects |
| static void XMLString::cut | ( | XMLCh *const | toCutFrom, | |
| const unsigned int | count | |||
| ) | [static] |
Cut leading chars from a string.
| toCutFrom | The string to cut chars from | |
| count | The count of leading chars to cut |
| static char* XMLString::transcode | ( | const XMLCh *const | toTranscode | ) | [static] |
Transcodes a string to native code-page.
NOTE: The returned buffer is dynamically allocated and is the responsibility of the caller to delete it when not longer needed. You can call XMLString::release to release this returned buffer.
| toTranscode | The string to be transcoded |
| static char* XMLString::transcode | ( | const XMLCh *const | toTranscode, | |
| MemoryManager *const | manager | |||
| ) | [static] |
| static bool XMLString::transcode | ( | const XMLCh *const | toTranscode, | |
| char *const | toFill, | |||
| const unsigned int | maxChars, | |||
| MemoryManager *const | manager = XMLPlatformUtils::fgMemoryManager | |||
| ) | [static] |
Transcodes a string to native code-page.
Be aware that when transcoding to an external encoding, that each Unicode char can create multiple output bytes. So you cannot assume a one to one correspondence of input chars to output bytes.
| toTranscode | The string tobe transcoded | |
| toFill | The buffer that is filled with the transcoded value. The size of this buffer should atleast be 'maxChars + 1'. | |
| maxChars | The maximum number of bytes that the output buffer can hold (not including the null, which is why toFill should be at least maxChars+1.). | |
| manager | The MemoryManager to use to allocate objects |
| static XMLCh* XMLString::transcode | ( | const char *const | toTranscode | ) | [static] |
Transcodes a string to native code-page.
NOTE: The returned buffer is dynamically allocated and is the responsibility of the caller to delete it when not longer needed. You can call XMLString::release to release this returned buffer.
| toTranscode | The string to be transcoded |
| static XMLCh* XMLString::transcode | ( | const char *const | toTranscode, | |
| MemoryManager *const | manager | |||
| ) | [static] |
| static bool XMLString::transcode | ( | const char *const | toTranscode, | |
| XMLCh *const | toFill, | |||
| const unsigned int | maxChars, | |||
| MemoryManager *const | manager = XMLPlatformUtils::fgMemoryManager | |||
| ) | [static] |
Transcodes a string to native code-page.
| toTranscode | The string tobe transcoded | |
| toFill | The buffer that is filled with the transcoded value. The size of this buffer should atleast be 'maxChars + 1'. | |
| maxChars | The maximum number of characters that the output buffer can hold (not including the null, which is why toFill should be at least maxChars+1.). | |
| manager | The MemoryManager to use to allocate objects |
| static void XMLString::trim | ( | char *const | toTrim | ) | [static] |
Trims off extra space characters from the start and end of the string, moving the non-space string content back to the start.
| toTrim | The string to be trimmed. On return this contains the trimmed string |
| static void XMLString::trim | ( | XMLCh *const | toTrim | ) | [static] |
Trims off extra space characters from the start and end of the string, moving the non-space string content back to the start.
| toTrim | The string to be trimmed. On return this contains the trimmed string |
| static BaseRefVectorOf<XMLCh>* XMLString::tokenizeString | ( | const XMLCh *const | tokenizeSrc, | |
| MemoryManager *const | manager = XMLPlatformUtils::fgMemoryManager | |||
| ) | [static] |
Break a string into tokens with space as delimiter, and stored in a string vector.
The caller owns the string vector that is returned, and is responsible for deleting it.
| tokenizeSrc | String to be tokenized | |
| manager | The MemoryManager to use to allocate objects |
| static XMLCh* XMLString::makeUName | ( | const XMLCh *const | pszURI, | |
| const XMLCh *const | pszName | |||
| ) | [static] |
Creates a UName from a URI and base name.
It is in the form {url}name, and is commonly used internally to represent fully qualified names when namespaces are enabled.
| pszURI | The URI part of the name | |
| pszName | The base part of the name |
| static unsigned int XMLString::replaceTokens | ( | XMLCh *const | errText, | |
| const unsigned int | maxChars, | |||
| const XMLCh *const | text1, | |||
| const XMLCh *const | text2, | |||
| const XMLCh *const | text3, | |||
| const XMLCh *const | text4, | |||
| MemoryManager *const | manager = XMLPlatformUtils::fgMemoryManager | |||
| ) | [static] |
Internal function to perform token replacement for strings.
| errText | The text (NULL terminated) where the replacement is to be done. The size of this buffer should be 'maxChars + 1' to account for the final NULL. | |
| maxChars | The size of the output buffer, i.e. the maximum number of characters that it will hold. If the result is larger, it will be truncated. | |
| text1 | Replacement text-one | |
| text2 | Replacement text-two | |
| text3 | Replacement text-three | |
| text4 | Replacement text-four | |
| manager | The MemoryManager to use to allocate objects |
| static void XMLString::upperCase | ( | XMLCh *const | toUpperCase | ) | [static] |
Converts a string to uppercase.
| toUpperCase | The string which needs to be converted to uppercase. On return, this buffer also holds the converted uppercase string |
| static void XMLString::upperCaseASCII | ( | XMLCh *const | toUpperCase | ) | [static] |
Converts a string to uppercase The routine only uppercases A to Z (other characters not changed).
| toUpperCase | The string which needs to be converted to uppercase. On return, this buffer also holds the converted uppercase string |
| static void XMLString::lowerCase | ( | XMLCh *const | toLowerCase | ) | [static] |
Converts a string to lowercase.
| toLowerCase | The string which needs to be converted to lowercase. On return, this buffer also holds the converted lowercase string |
| static void XMLString::lowerCaseASCII | ( | XMLCh *const | toLowerCase | ) | [static] |
Converts a string to lowercase The routine only lowercases a to z (other characters not changed).
| toLowerCase | The string which needs to be converted to lowercase. On return, this buffer also holds the converted lowercase string |
| static bool XMLString::isWSReplaced | ( | const XMLCh *const | toCheck | ) | [static] |
Check if string is WhiteSpace:replace.
| toCheck | The string which needs to be checked. |
| static bool XMLString::isWSCollapsed | ( | const XMLCh *const | toCheck | ) | [static] |
Check if string is WhiteSpace:collapse.
| toCheck | The string which needs to be checked. |
| static void XMLString::replaceWS | ( | XMLCh *const | toConvert, | |
| MemoryManager *const | manager = XMLPlatformUtils::fgMemoryManager | |||
| ) | [static] |
Replace whitespace.
| toConvert | The string which needs to be whitespace replaced. On return , this buffer also holds the converted string | |
| manager | The MemoryManager to use to allocate objects |
| static void XMLString::collapseWS | ( | XMLCh *const | toConvert, | |
| MemoryManager *const | manager = XMLPlatformUtils::fgMemoryManager | |||
| ) | [static] |
Collapse whitespace.
| toConvert | The string which needs to be whitespace collapsed. On return , this buffer also holds the converted string | |
| manager | The MemoryManager to use to allocate objects |
| static void XMLString::removeWS | ( | XMLCh *const | toConvert, | |
| MemoryManager *const | manager = XMLPlatformUtils::fgMemoryManager | |||
| ) | [static] |
Remove whitespace.
| toConvert | The string which needs to be whitespace removed. On return , this buffer also holds the converted string | |
| manager | The MemoryManager to use to allocate objects |
| static void XMLString::removeChar | ( | const XMLCh *const | srcString, | |
| const XMLCh & | toRemove, | |||
| XMLBuffer & | dstBuffer | |||
| ) | [static] |
Remove character.
| srcString | The string | |
| toRemove | The character needs to be removed from the string | |
| dstBuffer | The buffer containning the result |
| static void XMLString::fixURI | ( | const XMLCh *const | str, | |
| XMLCh *const | target | |||
| ) | [static] |
Fixes a platform dependent absolute path filename to standard URI form.
1. Windows: fix 'x:' to 'file:///x:' and convert any backslash to forward slash 2. UNIX: fix '/blah/blahblah' to 'file:///blah/blahblah'
| str | The string that has the absolute path filename | |
| target | The target string pre-allocated to store the fixed uri |
| static void XMLString::release | ( | char ** | buf | ) | [static] |
Release the parameter char string that was allocated by the implementation (i.e.the parser).
The implementation will call operator delete[] and then turn the string to a null pointer.
| buf | The string to be deleted and become a null pointer. |
| static void XMLString::release | ( | XMLCh ** | buf | ) | [static] |
Release the parameter XMLCh string that was allocated by the implementation (i.e.the parser).
The implementation will call operator delete[] and then turn the string to a null pointer.
| buf | The string to be deleted and become a null pointer. |
| static void XMLString::release | ( | XMLByte ** | buf | ) | [static] |
Release the parameter XMLByte string that was allocated by the implementation (i.e.the parser).
The implementation will call operator delete[] and then turn the string to a null pointer.
| buf | The string to be deleted and become a null pointer. |
| static void XMLString::release | ( | void ** | buf, | |
| MemoryManager *const | manager | |||
| ) | [static] |
Release the parameter string that was allocated using the version of XMLString::transcode that accepts a MemoryManager.
The implementation will call MemoryManager::deallocate and then turn the string to a null pointer.
| buf | The string to be deleted and become a null pointer. | |
| manager | The MemoryManager to use to allocate objects |
friend class XMLPlatformUtils [friend] |
1.5.4