Lines Matching refs:UBool
38 static UBool
39 utext_access(UText *ut, int64_t index, UBool forward) {
45 U_CAPI UBool U_EXPORT2
91 U_CAPI UBool U_EXPORT2
93 UBool r = (ut->providerProperties & I32_FLAG(UTEXT_PROVIDER_LENGTH_IS_EXPENSIVE)) != 0;
223 UBool r = ut->pFuncs->access(ut, nativePosition, FALSE); // reverse iteration flag loads preceding chunk
433 U_CAPI UBool U_EXPORT2
459 U_CAPI UBool U_EXPORT2
462 UBool b = (ut->providerProperties & I32_FLAG(UTEXT_PROVIDER_WRITABLE)) != 0;
474 U_CAPI UBool U_EXPORT2
477 UBool b = (ut->providerProperties & I32_FLAG(UTEXT_PROVIDER_HAS_META_DATA)) != 0;
504 UBool move,
520 utext_clone(UText *dest, const UText *src, UBool deep, UBool readOnly, UErrorCode *status) {
933 static UBool U_CALLCONV
934 utf8TextAccess(UText *ut, int64_t index, UBool forward) {
1204 UBool nulTerminated = FALSE;
1215 UBool seenNonAscii = FALSE;
1563 utf8TextClone(UText *dest, const UText *src, UBool deep, UErrorCode *status)
1696 repTextClone(UText *dest, const UText *src, UBool deep, UErrorCode *status) {
1738 static UBool U_CALLCONV
1739 repTextAccess(UText *ut, int64_t index, UBool forward) {
1935 UnicodeString replStr((UBool)(length<0), src, length); // read-only alias
1959 UBool move,
2086 unistrTextClone(UText *dest, const UText *src, UBool deep, UErrorCode *status) {
2125 static UBool U_CALLCONV
2126 unistrTextAccess(UText *ut, int64_t index, UBool forward) {
2131 UBool retVal = (forward && index<length) || (!forward && index>0);
2223 UBool move,
2346 ucstrTextClone(UText *dest, const UText * src, UBool deep, UErrorCode * status) {
2414 static UBool U_CALLCONV
2415 ucstrTextAccess(UText *ut, int64_t index, UBool forward) {
2497 UBool retVal = (forward && index<ut->chunkNativeLimit) || (!forward && index>0);
2676 static UBool U_CALLCONV
2677 charIterTextAccess(UText *ut, int64_t index, UBool forward) {
2699 UBool needChunkSetup = TRUE;
2742 UBool success = (forward? ut->chunkOffset<ut->chunkLength : ut->chunkOffset>0);
2747 charIterTextClone(UText *dest, const UText *src, UBool deep, UErrorCode * status) {