Home
last modified time | relevance | path

Searched refs:nativeLimit (Results 1 - 11 of 11) sorted by relevance

/third_party/icu/icu4c/source/common/unicode/
H A Dutext.h640 * @param nativeLimit the native string index of the position following the last
643 * nativeLimit must be >= nativeStart.
656 int64_t nativeStart, int64_t nativeLimit,
820 * @param nativeLimit the native index of the character following the region to be replaced.
833 int64_t nativeStart, int64_t nativeLimit,
862 * @param nativeLimit The native index of the character position following the region
873 int64_t nativeStart, int64_t nativeLimit,
1041 * @param nativeLimit the native string index of the position following the last
1055 int64_t nativeStart, int64_t nativeLimit,
1077 * @param nativeLimit th
[all...]
/third_party/node/deps/icu-small/source/common/unicode/
H A Dutext.h640 * @param nativeLimit the native string index of the position following the last
643 * nativeLimit must be >= nativeStart.
656 int64_t nativeStart, int64_t nativeLimit,
820 * @param nativeLimit the native index of the character following the region to be replaced.
833 int64_t nativeStart, int64_t nativeLimit,
862 * @param nativeLimit The native index of the character position following the region
873 int64_t nativeStart, int64_t nativeLimit,
1041 * @param nativeLimit the native string index of the position following the last
1055 int64_t nativeStart, int64_t nativeLimit,
1077 * @param nativeLimit th
[all...]
/third_party/skia/third_party/externals/icu/source/common/unicode/
H A Dutext.h640 * @param nativeLimit the native string index of the position following the last
643 * nativeLimit must be >= nativeStart.
656 int64_t nativeStart, int64_t nativeLimit,
820 * @param nativeLimit the native index of the character following the region to be replaced.
833 int64_t nativeStart, int64_t nativeLimit,
862 * @param nativeLimit The native index of the character position following the region
873 int64_t nativeStart, int64_t nativeLimit,
1041 * @param nativeLimit the native string index of the position following the last
1055 int64_t nativeStart, int64_t nativeLimit,
1077 * @param nativeLimit th
[all...]
/third_party/icu/icu4c/source/test/intltest/
H A Dutxttest.h54 int32_t nativeStart, int32_t nativeLimit, int32_t nativeDest,
59 int32_t nativeLimit,
H A Dutxttest.cpp315 int32_t nativeLimit = 0; in TestCMR() local
364 nativeLimit = nativeMap[srcIndex+srcLength].nativeIdx; in TestCMR()
373 nativeStart, nativeLimit, nativeDest, in TestCMR()
377 nativeStart, nativeLimit, nativeDest, in TestCMR()
392 nativeStart, nativeLimit, in TestCMR()
410 int32_t nativeStart, int32_t nativeLimit, int32_t nativeDest, in TestCopyMove()
439 utext_copy(targetUT, nativeStart, nativeLimit, nativeDest, move, &status); in TestCopyMove()
440 if (nativeDest > nativeStart && nativeDest < nativeLimit) { in TestCopyMove()
468 expectedNativeLength += nativeLimit - nativeStart; in TestCopyMove()
486 int32_t nativeLimit, in TestReplace()
409 TestCopyMove(const UnicodeString &us, UText *ut, UBool move, int32_t nativeStart, int32_t nativeLimit, int32_t nativeDest, int32_t u16Start, int32_t u16Limit, int32_t u16Dest) TestCopyMove() argument
482 TestReplace( const UnicodeString &us, UText *ut, int32_t nativeStart, int32_t nativeLimit, int32_t u16Start, int32_t u16Limit, const UnicodeString &repStr) TestReplace() argument
[all...]
/third_party/icu/icu4c/source/common/
H A Dutext.cpp487 int64_t nativeStart, int64_t nativeLimit, in utext_replace()
498 int32_t i = ut->pFuncs->replace(ut, nativeStart, nativeLimit, replacementText, replacementLength, status); in utext_replace()
504 int64_t nativeStart, int64_t nativeLimit, in utext_copy()
516 ut->pFuncs->copy(ut, nativeStart, nativeLimit, destIndex, move, status); in utext_copy()
486 utext_replace(UText *ut, int64_t nativeStart, int64_t nativeLimit, const UChar *replacementText, int32_t replacementLength, UErrorCode *status) utext_replace() argument
503 utext_copy(UText *ut, int64_t nativeStart, int64_t nativeLimit, int64_t destIndex, UBool move, UErrorCode *status) utext_copy() argument
/third_party/node/deps/icu-small/source/common/
H A Dutext.cpp490 int64_t nativeStart, int64_t nativeLimit, in utext_replace()
501 int32_t i = ut->pFuncs->replace(ut, nativeStart, nativeLimit, replacementText, replacementLength, status); in utext_replace()
507 int64_t nativeStart, int64_t nativeLimit, in utext_copy()
519 ut->pFuncs->copy(ut, nativeStart, nativeLimit, destIndex, move, status); in utext_copy()
489 utext_replace(UText *ut, int64_t nativeStart, int64_t nativeLimit, const char16_t *replacementText, int32_t replacementLength, UErrorCode *status) utext_replace() argument
506 utext_copy(UText *ut, int64_t nativeStart, int64_t nativeLimit, int64_t destIndex, UBool move, UErrorCode *status) utext_copy() argument
/third_party/skia/third_party/externals/icu/source/common/
H A Dutext.cpp487 int64_t nativeStart, int64_t nativeLimit, in utext_replace()
498 int32_t i = ut->pFuncs->replace(ut, nativeStart, nativeLimit, replacementText, replacementLength, status); in utext_replace()
504 int64_t nativeStart, int64_t nativeLimit, in utext_copy()
516 ut->pFuncs->copy(ut, nativeStart, nativeLimit, destIndex, move, status); in utext_copy()
486 utext_replace(UText *ut, int64_t nativeStart, int64_t nativeLimit, const UChar *replacementText, int32_t replacementLength, UErrorCode *status) utext_replace() argument
503 utext_copy(UText *ut, int64_t nativeStart, int64_t nativeLimit, int64_t destIndex, UBool move, UErrorCode *status) utext_copy() argument
/third_party/icu/icu4c/source/i18n/
H A Drematch.cpp1628 int64_t nativeLimit = regionLimit; in region() local
1629 if (nativeStart > fInputLength || nativeLimit > fInputLength) { in region()
1639 fRegionLimit = nativeLimit; in region()
1641 fActiveLimit = nativeLimit; in region()
1652 fLookLimit = nativeLimit; in region()
1656 fAnchorLimit = nativeLimit; in region()
/third_party/node/deps/icu-small/source/i18n/
H A Drematch.cpp1628 int64_t nativeLimit = regionLimit; in region() local
1629 if (nativeStart > fInputLength || nativeLimit > fInputLength) { in region()
1639 fRegionLimit = nativeLimit; in region()
1641 fActiveLimit = nativeLimit; in region()
1652 fLookLimit = nativeLimit; in region()
1656 fAnchorLimit = nativeLimit; in region()
/third_party/skia/third_party/externals/icu/source/i18n/
H A Drematch.cpp1618 int64_t nativeLimit = regionLimit; in region() local
1619 if (nativeStart > fInputLength || nativeLimit > fInputLength) { in region()
1629 fRegionLimit = nativeLimit; in region()
1631 fActiveLimit = nativeLimit; in region()
1642 fLookLimit = nativeLimit; in region()
1646 fAnchorLimit = nativeLimit; in region()

Completed in 36 milliseconds