HomeSort by relevance Sort by last modified time
    Searched refs:destCapacity (Results 51 - 75 of 87) sorted by null

1 23 4

  /external/icu/icu4c/source/i18n/unicode/
uspoof.h     [all...]
umsg.h 607 * @param destCapacity the length of the buffer, or 0 if preflighting
618 int32_t destCapacity,
measunit.h 102 * If there are too many units to fit into destCapacity then the
106 * @param destCapacity number of MeasureUnit instances available at dest.
113 int32_t destCapacity,
118 * If there are too many units to fit into destCapacity then the
123 * @param destCapacity number of MeasureUnit instances available at dest.
131 int32_t destCapacity,
    [all...]
tblcoll.h 653 * @param destCapacity The length of dest. If it is 0, then dest may be NULL and the function
664 int32_t destCapacity,
    [all...]
  /external/icu/icu4c/source/i18n/
umsg.cpp 618 #define MAppend(c) if (len < destCapacity) dest[len++] = c; else len++
623 int32_t destCapacity,
634 if (pattern == NULL || patternLength < -1 || (dest == NULL && destCapacity > 0)) {
638 U_ASSERT(destCapacity >= 0);
709 return u_terminateUChars(dest, destCapacity, len, ec);
uspoof_wsconf.cpp 76 URegularExpression *e, int32_t group, char *destBuf, int32_t destCapacity, UErrorCode &status) {
82 if (U_FAILURE(status) || len == -1 || len >= destCapacity) {
86 s.extract(0, len, destBuf, destCapacity, US_INV);
repattrn.cpp 640 int32_t destCapacity,
651 r = m.split(input, dest, destCapacity, status);
661 int32_t destCapacity,
672 r = m.split(input, dest, destCapacity, status);
plurrule.cpp 289 int32_t /* destCapacity */, UErrorCode& error) {
306 int32_t destCapacity, UErrorCode& status) {
313 for (sampleCount = 0; sampleCount < destCapacity && sampleStartIdx < samples.length(); ) {
362 if (sampleCount >= destCapacity) {
375 int32_t destCapacity, UErrorCode& status) {
377 if (rc == NULL || destCapacity == 0 || U_FAILURE(status)) {
380 int32_t numSamples = getSamplesFromString(rc->fIntegerSamples, dest, destCapacity, status);
382 numSamples = getSamplesFromString(rc->fDecimalSamples, dest, destCapacity, status);
    [all...]
measunit.cpp 1091 int32_t destCapacity,
1096 if (destCapacity < UPRV_LENGTHOF(gSubTypes)) {
1115 int32_t destCapacity,
1125 if (destCapacity < len) {
rematch.cpp     [all...]
  /external/icu/icu4c/source/common/unicode/
ucnv.h     [all...]
utext.h 662 * @param destCapacity The size, in UChars, of the destination buffer. May be zero
674 UChar *dest, int32_t destCapacity,
    [all...]
uset.h     [all...]
uniset.h     [all...]
unistr.h 69 UChar *dest, int32_t destCapacity,
    [all...]
uchar.h     [all...]
  /external/icu/icu4c/source/common/
ucnv.c     [all...]
uset.cpp 332 uset_serialize(const USet* set, uint16_t* dest, int32_t destCapacity, UErrorCode* ec) {
337 return ((const UnicodeSet*) set)->UnicodeSet::serialize(dest, destCapacity,* ec);
uniset.cpp     [all...]
unistr.cpp 847 UnicodeString::extract(UChar *dest, int32_t destCapacity,
851 if(isBogus() || destCapacity<0 || (destCapacity>0 && dest==0)) {
855 if(len>0 && len<=destCapacity && array!=dest) {
858 return u_terminateUChars(dest, destCapacity, len, &errorCode);
    [all...]
unames.cpp     [all...]
uloc.cpp     [all...]
normalizer2impl.h 127 UBool init(int32_t destCapacity, UErrorCode &errorCode);
  /external/icu/icu4c/source/test/cintltst/
spreptst.c 293 char* dest, int32_t destCapacity,
305 u_strToUTF8(dest, destCapacity, &destLen, b1, b1Len, status);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
Normalizer2Impl.java 122 public ReorderingBuffer(Normalizer2Impl ni, Appendable dest, int destCapacity) {
128 // In Java, the constructor subsumes public void init(int destCapacity) {
129 str.ensureCapacity(destCapacity);
    [all...]

Completed in 504 milliseconds

1 23 4