Home | History | Annotate | Download | only in letest

Lines Matching refs:uString

34 char *getCString(const UnicodeString *uString)
36 if (uString == NULL) {
40 le_int32 uLength = uString->length();
41 le_int32 cLength = uString->extract(0, uLength, NULL, 0, US_INV);
44 uString->extract(0, uLength, cString, cLength, US_INV);
56 const UnicodeString ustring(uChars);
58 return getCString(&ustring);
61 char *getUTF8String(const UnicodeString *uString)
63 if (uString == NULL) {
67 le_int32 uLength = uString->length();
68 le_int32 cLength = uString->extract(0, uLength, NULL, 0, "UTF-8");
71 uString->extract(0, uLength, cString, cLength, "UTF-8");