本文整理汇总了C++中icu::UnicodeString::setToBogus方法的典型用法代码示例。如果您正苦于以下问题:C++ UnicodeString::setToBogus方法的具体用法?C++ UnicodeString::setToBogus怎么用?C++ UnicodeString::setToBogus使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类icu::UnicodeString
的用法示例。
在下文中一共展示了UnicodeString::setToBogus方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: ustring_from_char
static bool ustring_from_char(icu::UnicodeString& ret,
const String& str,
UErrorCode &error) {
error = U_ZERO_ERROR;
ret = u16(str, error, U_SENTINEL);
if (U_FAILURE(error)) {
ret.setToBogus();
return false;
}
return true;
}
示例2: ustring_from_char
bool ustring_from_char(icu::UnicodeString& ret,
const String& str,
UErrorCode &error) {
int32_t capacity = str.size() + 1;
UChar *utf16 = ret.getBuffer(capacity);
int32_t utf16_len = 0;
error = U_ZERO_ERROR;
u_strFromUTF8WithSub(utf16, ret.getCapacity(), &utf16_len,
str.c_str(), str.size(),
U_SENTINEL /* no substitution */,
nullptr, &error);
ret.releaseBuffer(utf16_len);
if (U_FAILURE(error)) {
ret.setToBogus();
return false;
}
return true;
}