HomeSort by relevance Sort by last modified time
    Searched refs:resultCapacity (Results 1 - 25 of 30) sorted by null

1 2

  /external/icu4c/common/
appendable.cpp 58 int32_t *resultCapacity) {
60 *resultCapacity=0;
63 *resultCapacity=scratchCapacity;
charstr.cpp 84 int32_t &resultCapacity,
87 resultCapacity=0;
92 resultCapacity=appendCapacity;
96 resultCapacity=buffer.getCapacity()-len-1;
99 resultCapacity=0;
cmemory.h 275 * @param resultCapacity will be set to the returned array's capacity (output-only)
279 inline T *orphanOrClone(int32_t length, int32_t &resultCapacity);
338 inline T *MaybeStackArray<T, stackCapacity>::orphanOrClone(int32_t length, int32_t &resultCapacity) {
354 resultCapacity=length;
447 * @param resultCapacity will be set to the returned array's capacity (output-only)
451 inline H *orphanOrClone(int32_t length, int32_t &resultCapacity);
511 int32_t &resultCapacity) {
527 resultCapacity=length;
uset_props.cpp 130 UChar* result, int32_t resultCapacity,
135 return pat.extract(result, resultCapacity, *ec);
charstr.h 85 * resultCapacity. Guarantees resultCapacity>=minCapacity if U_SUCCESS().
86 * There will additionally be space for a terminating NUL right at resultCapacity.
92 * After writing at most resultCapacity bytes, call append() with the
99 * @param resultCapacity will be set to the capacity of the returned buffer
101 * @return a buffer with resultCapacity>=min_capacity
105 int32_t &resultCapacity,
uresimp.h 151 * @param resultCapacity capacity of the fillin buffer
162 * than resultCapacity, the returned full name will be truncated and an error code will be returned.
165 ures_getFunctionalEquivalent(char *result, int32_t resultCapacity,
uloc.c     [all...]
unistr.cpp     [all...]
  /external/icu4c/i18n/
udateintervalformat.cpp 70 int32_t resultCapacity,
77 if (result == NULL ? resultCapacity != 0 : resultCapacity < 0) {
85 res.setTo(result, 0, resultCapacity);
102 return res.extract(result, resultCapacity, *status);
ulocdata.c 253 int32_t resultCapacity,
293 u_strncpy(result, pattern, resultCapacity);
301 int32_t resultCapacity,
341 u_strncpy(result, separator, resultCapacity);
tblcoll.cpp 472 int32_t resultCapacity;
476 resultCapacity = sortkey.fCapacity;
479 resultCapacity = 0;
482 result, resultCapacity, &status);
488 sortkey.adopt(result, resultCapacity, resultLen);
ucal.cpp 66 ucal_getDefaultTimeZone(UChar* result, int32_t resultCapacity, UErrorCode* ec) {
76 len = id.extract(result, resultCapacity, *ec);
541 UChar* result, int32_t resultCapacity, UBool *isSystemID, UErrorCode* status) {
548 if (id == 0 || len == 0 || result == 0 || resultCapacity <= 0) {
560 reslen = canonical.extract(result, resultCapacity, *status);
usearch.cpp     [all...]
  /external/icu4c/common/unicode/
appendable.h 91 * *resultCapacity. Guarantees *resultCapacity>=minCapacity.
97 * After writing at most *resultCapacity UChars, call appendString() with the
128 * @param resultCapacity pointer to an integer which will be set to the
130 * @return a buffer with *resultCapacity>=minCapacity
136 int32_t *resultCapacity);
194 * *resultCapacity. Guarantees *resultCapacity>=minCapacity.
208 * @param resultCapacity pointer to an integer which will be set to the
210 * @return a buffer with *resultCapacity>=minCapacit
    [all...]
uset.h 502 * @param resultCapacity the capacity of result, may be 0 if result is NULL
508 * @return length of string, possibly larger than resultCapacity
513 UChar* result, int32_t resultCapacity,
    [all...]
  /external/icu4c/i18n/unicode/
udateintervalformat.h 152 * @param resultCapacity
172 int32_t resultCapacity,
ucal.h 611 * @param resultCapacity The capacity of the result buffer
621 ucal_getDefaultTimeZone(UChar* result, int32_t resultCapacity, UErrorCode* ec);
    [all...]
usearch.h 431 * @param resultCapacity length of the result buffer
443 int32_t resultCapacity,
    [all...]
ucol.h 786 * @param resultCapacity capacity of the fillin buffer
    [all...]
  /external/webkit/Source/WebCore/icu/unicode/
usearch.h 365 * @param resultCapacity length of the result buffer
377 int32_t resultCapacity,
uset.h 291 * @param resultCapacity the capacity of result, may be 0 if result is NULL
297 * @return length of string, possibly larger than resultCapacity
302 UChar* result, int32_t resultCapacity,
ucol.h 595 * @param resultCapacity capacity of the fillin buffer
605 * than resultCapacity, the returned full name will be truncated and
610 ucol_getFunctionalEquivalent(char* result, int32_t resultCapacity,
    [all...]
  /external/icu4c/test/intltest/
convtest.cpp 784 UChar *result, int32_t resultCapacity,
785 int32_t *resultOffsets, /* also resultCapacity */
795 resultLimit=result+resultCapacity;
    [all...]
  /external/webkit/Source/JavaScriptCore/icu/unicode/
uset.h 291 * @param resultCapacity the capacity of result, may be 0 if result is NULL
297 * @return length of string, possibly larger than resultCapacity
302 UChar* result, int32_t resultCapacity,
ucol.h 595 * @param resultCapacity capacity of the fillin buffer
605 * than resultCapacity, the returned full name will be truncated and
610 ucol_getFunctionalEquivalent(char* result, int32_t resultCapacity,
    [all...]

Completed in 353 milliseconds

1 2