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

1 23 4

  /external/icu4c/common/
uprops.cpp 166 // Small destCapacity for NFKC_CF(c).
582 u_getFC_NFKC_Closure(UChar32 c, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode) {
586 if(destCapacity<0 || (dest==NULL && destCapacity>0)) {
608 return u_terminateUChars(dest, destCapacity, 0, pErrorCode); // c does not change at all under CaseFolding+NFKC
624 return u_terminateUChars(dest, destCapacity, 0, pErrorCode);
626 return kc2.extract(dest, destCapacity, *pErrorCode);
ubidiwrt.c 358 int32_t length, destCapacity;
393 /* destSize shrinks, later destination length=destCapacity-destSize */
395 destCapacity=destSize;
629 return u_terminateUChars(saveDest, destCapacity, destCapacity-destSize, pErrorCode);
ucnv.c     [all...]
unistr.cpp 743 UnicodeString::extract(UChar *dest, int32_t destCapacity,
747 if(isBogus() || destCapacity<0 || (destCapacity>0 && dest==0)) {
751 if(len>0 && len<=destCapacity && array!=dest) {
754 return u_terminateUChars(dest, destCapacity, len, &errorCode);
    [all...]
unames.c     [all...]
  /external/icu4c/i18n/
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 605 int32_t destCapacity,
616 r = m.split(input, dest, destCapacity, status);
626 int32_t destCapacity,
637 r = m.split(input, dest, destCapacity, status);
umsg.cpp 614 #define MAppend(c) if (len < destCapacity) dest[len++] = c; else len++
619 int32_t destCapacity,
630 if (pattern == NULL || patternLength < -1 || (dest == NULL && destCapacity > 0)) {
703 return u_terminateUChars(dest, destCapacity, len, ec);
tblcoll.cpp 591 int32_t destCapacity,
594 return ucol_getReorderCodes(ucollator, dest, destCapacity, &status);
  /external/icu4c/i18n/unicode/
regex.h 510 * @param destCapacity The number of elements in the destination array.
511 * If the number of fields found is less than destCapacity, the
522 int32_t destCapacity,
540 * @param destCapacity The number of elements in the destination array.
541 * If the number of fields found is less than destCapacity, the
553 int32_t destCapacity,
    [all...]
umsg.h 693 * @param destCapacity the length of the buffer, or 0 if preflighting
704 int32_t destCapacity,
ucol.h 542 * @param destCapacity The length of dest. If it is 0, then dest may be NULL and the function will only return the length of the result without writing any of the result string (pre-flighting).
551 int32_t destCapacity,
    [all...]
coll.h 603 * @param destCapacity The length of dest. If it is 0, then dest may be NULL and the function will only return the length of the result without writing any of the result string (pre-flighting).
610 int32_t destCapacity,
    [all...]
tblcoll.h 672 * @param destCapacity The length of dest. If it is 0, then dest may be NULL and the function will only return the length of the result without writing any of the result string (pre-flighting).
679 int32_t destCapacity,
    [all...]
  /external/icu4c/test/intltest/
testidna.h 31 UChar *dest, int32_t destCapacity,
  /external/icu4c/common/unicode/
uloc.h 666 * @param destCapacity The size of the buffer (number of UChars). If it is 0, then
679 int32_t destCapacity,
693 * @param destCapacity The size of the buffer (number of UChars). If it is 0, then
706 int32_t destCapacity,
    [all...]
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...]
uchar.h     [all...]
  /external/webkit/Source/JavaScriptCore/icu/unicode/
ucnv.h     [all...]
uset.h 670 * @param dest pointer to buffer of destCapacity 16-bit integers.
671 * May be NULL only if destCapacity is zero.
672 * @param destCapacity size of dest, or zero. Must not be negative.
675 * U_BUFFER_OVERFLOW_ERROR if n+2*m+(m!=0?2:1) > destCapacity.
682 uset_serialize(const USet* set, uint16_t* dest, int32_t destCapacity, UErrorCode* pErrorCode);
  /external/webkit/Source/JavaScriptGlue/icu/unicode/
ucnv.h     [all...]
  /external/webkit/Source/WebCore/icu/unicode/
ucnv.h     [all...]
uset.h 670 * @param dest pointer to buffer of destCapacity 16-bit integers.
671 * May be NULL only if destCapacity is zero.
672 * @param destCapacity size of dest, or zero. Must not be negative.
675 * U_BUFFER_OVERFLOW_ERROR if n+2*m+(m!=0?2:1) > destCapacity.
682 uset_serialize(const USet* set, uint16_t* dest, int32_t destCapacity, UErrorCode* pErrorCode);
  /external/icu4c/test/cintltst/
spreptst.c 296 char* dest, int32_t destCapacity,
308 u_strToUTF8(dest, destCapacity, &destLen, b1, b1Len, status);

Completed in 723 milliseconds

1 23 4