Searched refs:destCapacity (Results 1 - 25 of 148) sorted by relevance

123456

/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dnfsprep.h46 * @param destCapacity
53 char* dest, int32_t destCapacity,
60 * @param destCapacity
69 char* dest, int32_t destCapacity,
75 * @param destCapacity
84 char* dest, int32_t destCapacity,
90 * @param destCapacity
99 char* dest, int32_t destCapacity,
H A Dnfsprep.c41 char* dest, int32_t destCapacity,
66 if((src==NULL) || (srcLength < -1) || (destCapacity<0) || (!dest && destCapacity > 0)){
117 if(dest!=NULL && reqLength <= destCapacity){
132 return u_terminateChars(dest, destCapacity, reqLength, status);
207 char* dest, int32_t destCapacity,
224 if((src==NULL) || (srcLength < -1) || (destCapacity<0) || (!dest && destCapacity > 0)){
259 if(dest != NULL && reqLen <= destCapacity){
276 return u_terminateChars(dest, destCapacity, reqLe
40 nfs4_prepare( const char* src, int32_t srcLength, char* dest, int32_t destCapacity, NFS4ProfileState state, UParseError* parseError, UErrorCode* status) argument
206 nfs4_mixed_prepare( const char* src, int32_t srcLength, char* dest, int32_t destCapacity, UParseError* parseError, UErrorCode* status) argument
280 nfs4_cis_prepare( const char* src, int32_t srcLength, char* dest, int32_t destCapacity, UParseError* parseError, UErrorCode* status) argument
289 nfs4_cs_prepare( const char* src, int32_t srcLength, char* dest, int32_t destCapacity, UBool isCaseSensitive, UParseError* parseError, UErrorCode* status) argument
[all...]
/external/icu4c/test/cintltst/
H A Dnfsprep.h46 * @param destCapacity
53 char* dest, int32_t destCapacity,
60 * @param destCapacity
69 char* dest, int32_t destCapacity,
75 * @param destCapacity
84 char* dest, int32_t destCapacity,
90 * @param destCapacity
99 char* dest, int32_t destCapacity,
H A Dnfsprep.c41 char* dest, int32_t destCapacity,
66 if((src==NULL) || (srcLength < -1) || (destCapacity<0) || (!dest && destCapacity > 0)){
117 if(dest!=NULL && reqLength <= destCapacity){
132 return u_terminateChars(dest, destCapacity, reqLength, status);
207 char* dest, int32_t destCapacity,
224 if((src==NULL) || (srcLength < -1) || (destCapacity<0) || (!dest && destCapacity > 0)){
259 if(dest != NULL && reqLen <= destCapacity){
276 return u_terminateChars(dest, destCapacity, reqLe
40 nfs4_prepare( const char* src, int32_t srcLength, char* dest, int32_t destCapacity, NFS4ProfileState state, UParseError* parseError, UErrorCode* status) argument
206 nfs4_mixed_prepare( const char* src, int32_t srcLength, char* dest, int32_t destCapacity, UParseError* parseError, UErrorCode* status) argument
280 nfs4_cis_prepare( const char* src, int32_t srcLength, char* dest, int32_t destCapacity, UParseError* parseError, UErrorCode* status) argument
289 nfs4_cs_prepare( const char* src, int32_t srcLength, char* dest, int32_t destCapacity, UBool isCaseSensitive, UParseError* parseError, UErrorCode* status) argument
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Dpunycode.h47 * @param destCapacity Size of dest.
68 UChar *dest, int32_t destCapacity,
80 * @param destCapacity Size of dest in number of UChars,
103 UChar *dest, int32_t destCapacity,
H A Dunorm.cpp99 UChar *dest, int32_t destCapacity,
106 src, srcLength, dest, destCapacity, pErrorCode);
109 src, srcLength, dest, destCapacity, pErrorCode);
118 UChar *dest, int32_t destCapacity,
136 if( destCapacity<0 || (dest==NULL && destCapacity>0) ||
147 return u_terminateUChars(dest, destCapacity, 0, pErrorCode);
176 UnicodeString destString(dest, 0, destCapacity);
178 n2->normalize(buffer, destString, *pErrorCode).extract(dest, destCapacity, *pErrorCode);
185 return buffer.extract(dest, destCapacity, *pErrorCod
97 unorm_normalize(const UChar *src, int32_t srcLength, UNormalizationMode mode, int32_t options, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode) argument
117 unorm_iterate(UCharIterator *src, UBool forward, UChar *dest, int32_t destCapacity, UNormalizationMode mode, int32_t options, UBool doNormalize, UBool *pNeededToNormalize, UErrorCode *pErrorCode) argument
190 unorm_previous(UCharIterator *src, UChar *dest, int32_t destCapacity, UNormalizationMode mode, int32_t options, UBool doNormalize, UBool *pNeededToNormalize, UErrorCode *pErrorCode) argument
203 unorm_next(UCharIterator *src, UChar *dest, int32_t destCapacity, UNormalizationMode mode, int32_t options, UBool doNormalize, UBool *pNeededToNormalize, UErrorCode *pErrorCode) argument
218 unorm_concatenate(const UChar *left, int32_t leftLength, const UChar *right, int32_t rightLength, UChar *dest, int32_t destCapacity, UNormalizationMode mode, int32_t options, UErrorCode *pErrorCode) argument
[all...]
H A Dlocdispnames.cpp299 UChar *dest, int32_t destCapacity,
331 int32_t copyLength=uprv_min(length, destCapacity);
338 u_charsToUChars(substitute, dest, uprv_min(length, destCapacity));
342 return u_terminateUChars(dest, destCapacity, length, pErrorCode);
350 UChar *dest, int32_t destCapacity,
364 if(destCapacity<0 || (destCapacity>0 && dest==NULL)) {
376 return u_terminateUChars(dest, destCapacity, 0, pErrorCode);
384 dest, destCapacity,
391 UChar *dest, int32_t destCapacity,
294 _getStringOrCopyKey(const char *path, const char *locale, const char *tableKey, const char* subTableKey, const char *itemKey, const char *substitute, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode) argument
348 _getDisplayNameForComponent(const char *locale, const char *displayLocale, UChar *dest, int32_t destCapacity, UDisplayNameGetter *getter, const char *tag, UErrorCode *pErrorCode) argument
389 uloc_getDisplayLanguage(const char *locale, const char *displayLocale, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode) argument
398 uloc_getDisplayScript(const char* locale, const char* displayLocale, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode) argument
408 uloc_getDisplayCountry(const char *locale, const char *displayLocale, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode) argument
422 uloc_getDisplayVariant(const char *locale, const char *displayLocale, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode) argument
431 uloc_getDisplayName(const char *locale, const char *displayLocale, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode) argument
708 uloc_getDisplayKeyword(const char* keyword, const char* displayLocale, UChar* dest, int32_t destCapacity, UErrorCode* status) argument
739 uloc_getDisplayKeywordValue( const char* locale, const char* keyword, const char* displayLocale, UChar* dest, int32_t destCapacity, UErrorCode* status) argument
[all...]
H A Dustr_imp.h126 UChar *dest, int32_t destCapacity,
136 UChar *dest, int32_t destCapacity,
148 UChar *dest, int32_t destCapacity,
162 UChar *dest, int32_t destCapacity,
169 * If length < destCapacity then NUL-terminate.
170 * If length == destCapacity then do not terminate but set U_STRING_NOT_TERMINATED_WARNING.
171 * If length > destCapacity then do not terminate but set U_BUFFER_OVERFLOW_ERROR.
173 * @param dest Destination buffer, can be NULL if destCapacity==0.
174 * @param destCapacity Number of UChars available at dest.
181 u_terminateUChars(UChar *dest, int32_t destCapacity, int32_
[all...]
H A Dustr_wcs.c61 int32_t destCapacity,
195 if(0 < count && count <= destCapacity){
214 u_terminateWChars(dest,destCapacity,count,pErrorCode);
224 int32_t destCapacity,
236 (destCapacity<0) || (dest == NULL && destCapacity > 0)
247 if(0 < srcLength && srcLength <= destCapacity){
254 u_terminateUChars(dest,destCapacity,srcLength,pErrorCode);
260 return (wchar_t*)u_strToUTF32((UChar32*)dest, destCapacity, pDestLength,
265 return _strToWCS(dest,destCapacity,pDestLengt
60 _strToWCS(wchar_t *dest, int32_t destCapacity, int32_t *pDestLength, const UChar *src, int32_t srcLength, UErrorCode *pErrorCode) argument
223 u_strToWCS(wchar_t *dest, int32_t destCapacity, int32_t *pDestLength, const UChar *src, int32_t srcLength, UErrorCode *pErrorCode) argument
274 _strFromWCS( UChar *dest, int32_t destCapacity, int32_t *pDestLength, const wchar_t *src, int32_t srcLength, UErrorCode *pErrorCode) argument
477 u_strFromWCS(UChar *dest, int32_t destCapacity, int32_t *pDestLength, const wchar_t *src, int32_t srcLength, UErrorCode *pErrorCode) argument
[all...]
H A Ducasemap.c130 appendResult(uint8_t *dest, int32_t destIndex, int32_t destCapacity, argument
149 if(destIndex<destCapacity) {
154 U8_APPEND(dest, destIndex, destCapacity, c, isError);
163 (char *)(dest+destIndex), destCapacity-destIndex, &destLength,
223 uint8_t *dest, int32_t destCapacity,
243 while(destIndex<destCapacity && i<srcIndex) {
249 if((destIndex<destCapacity) && (c<0 ? (c2=~c)<=0x7f : UCASE_MAX_STRING_LENGTH<c && (c2=c)<=0x7f)) {
253 destIndex=appendResult(dest, destIndex, destCapacity, c, s);
257 if(destIndex>destCapacity) {
270 uint8_t *dest, int32_t destCapacity,
222 _caseMap(const UCaseMap *csm, UCaseMapFull *map, uint8_t *dest, int32_t destCapacity, const uint8_t *src, UCaseContext *csc, int32_t srcStart, int32_t srcLimit, UErrorCode *pErrorCode) argument
269 _toTitle(UCaseMap *csm, uint8_t *dest, int32_t destCapacity, const uint8_t *src, UCaseContext *csc, int32_t srcLength, UErrorCode *pErrorCode) argument
408 utf8_foldCase(const UCaseProps *csp, uint8_t *dest, int32_t destCapacity, const uint8_t *src, int32_t srcLength, uint32_t options, UErrorCode *pErrorCode) argument
453 caseMap(const UCaseMap *csm, uint8_t *dest, int32_t destCapacity, const uint8_t *src, int32_t srcLength, int32_t toWhichCase, UErrorCode *pErrorCode) argument
529 ucasemap_utf8ToLower(const UCaseMap *csm, char *dest, int32_t destCapacity, const char *src, int32_t srcLength, UErrorCode *pErrorCode) argument
540 ucasemap_utf8ToUpper(const UCaseMap *csm, char *dest, int32_t destCapacity, const char *src, int32_t srcLength, UErrorCode *pErrorCode) argument
553 ucasemap_utf8ToTitle(UCaseMap *csm, char *dest, int32_t destCapacity, const char *src, int32_t srcLength, UErrorCode *pErrorCode) argument
566 ucasemap_utf8FoldCase(const UCaseMap *csm, char *dest, int32_t destCapacity, const char *src, int32_t srcLength, UErrorCode *pErrorCode) argument
[all...]
/external/icu4c/common/
H A Dpunycode.h47 * @param destCapacity Size of dest.
68 UChar *dest, int32_t destCapacity,
80 * @param destCapacity Size of dest in number of UChars,
103 UChar *dest, int32_t destCapacity,
H A Ducasemap.cpp122 appendResult(uint8_t *dest, int32_t destIndex, int32_t destCapacity, argument
141 if(destIndex<destCapacity) {
146 U8_APPEND(dest, destIndex, destCapacity, c, isError);
155 (char *)(dest+destIndex), destCapacity-destIndex, &destLength,
215 uint8_t *dest, int32_t destCapacity,
235 while(destIndex<destCapacity && i<srcIndex) {
241 if((destIndex<destCapacity) && (c<0 ? (c2=~c)<=0x7f : UCASE_MAX_STRING_LENGTH<c && (c2=c)<=0x7f)) {
245 destIndex=appendResult(dest, destIndex, destCapacity, c, s);
249 if(destIndex>destCapacity) {
259 uint8_t *dest, int32_t destCapacity,
214 _caseMap(const UCaseMap *csm, UCaseMapFull *map, uint8_t *dest, int32_t destCapacity, const uint8_t *src, UCaseContext *csc, int32_t srcStart, int32_t srcLimit, UErrorCode *pErrorCode) argument
258 ucasemap_internalUTF8ToTitle(const UCaseMap *csm, uint8_t *dest, int32_t destCapacity, const uint8_t *src, int32_t srcLength, UErrorCode *pErrorCode) argument
390 ucasemap_internalUTF8ToLower(const UCaseMap *csm, uint8_t *dest, int32_t destCapacity, const uint8_t *src, int32_t srcLength, UErrorCode *pErrorCode) argument
405 ucasemap_internalUTF8ToUpper(const UCaseMap *csm, uint8_t *dest, int32_t destCapacity, const uint8_t *src, int32_t srcLength, UErrorCode *pErrorCode) argument
420 utf8_foldCase(const UCaseProps *csp, uint8_t *dest, int32_t destCapacity, const uint8_t *src, int32_t srcLength, uint32_t options, UErrorCode *pErrorCode) argument
458 ucasemap_internalUTF8Fold(const UCaseMap *csm, uint8_t *dest, int32_t destCapacity, const uint8_t *src, int32_t srcLength, UErrorCode *pErrorCode) argument
466 ucasemap_mapUTF8(const UCaseMap *csm, uint8_t *dest, int32_t destCapacity, const uint8_t *src, int32_t srcLength, UTF8CaseMapper *stringCaseMapper, UErrorCode *pErrorCode) argument
507 ucasemap_utf8ToLower(const UCaseMap *csm, char *dest, int32_t destCapacity, const char *src, int32_t srcLength, UErrorCode *pErrorCode) argument
518 ucasemap_utf8ToUpper(const UCaseMap *csm, char *dest, int32_t destCapacity, const char *src, int32_t srcLength, UErrorCode *pErrorCode) argument
529 ucasemap_utf8FoldCase(const UCaseMap *csm, char *dest, int32_t destCapacity, const char *src, int32_t srcLength, UErrorCode *pErrorCode) argument
[all...]
H A Dunorm.cpp99 UChar *dest, int32_t destCapacity,
106 src, srcLength, dest, destCapacity, pErrorCode);
109 src, srcLength, dest, destCapacity, pErrorCode);
118 UChar *dest, int32_t destCapacity,
125 if(destCapacity<0 || (dest==NULL && destCapacity>0) || src==NULL) {
134 return u_terminateUChars(dest, destCapacity, 0, pErrorCode);
163 UnicodeString destString(dest, 0, destCapacity);
165 n2->normalize(buffer, destString, *pErrorCode).extract(dest, destCapacity, *pErrorCode);
172 return buffer.extract(dest, destCapacity, *pErrorCod
97 unorm_normalize(const UChar *src, int32_t srcLength, UNormalizationMode mode, int32_t options, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode) argument
117 _iterate(UCharIterator *src, UBool forward, UChar *dest, int32_t destCapacity, const Normalizer2 *n2, UBool doNormalize, UBool *pNeededToNormalize, UErrorCode *pErrorCode) argument
177 unorm_iterate(UCharIterator *src, UBool forward, UChar *dest, int32_t destCapacity, UNormalizationMode mode, int32_t options, UBool doNormalize, UBool *pNeededToNormalize, UErrorCode *pErrorCode) argument
197 unorm_previous(UCharIterator *src, UChar *dest, int32_t destCapacity, UNormalizationMode mode, int32_t options, UBool doNormalize, UBool *pNeededToNormalize, UErrorCode *pErrorCode) argument
210 unorm_next(UCharIterator *src, UChar *dest, int32_t destCapacity, UNormalizationMode mode, int32_t options, UBool doNormalize, UBool *pNeededToNormalize, UErrorCode *pErrorCode) argument
225 _concatenate(const UChar *left, int32_t leftLength, const UChar *right, int32_t rightLength, UChar *dest, int32_t destCapacity, const Normalizer2 *n2, UErrorCode *pErrorCode) argument
261 unorm_concatenate(const UChar *left, int32_t leftLength, const UChar *right, int32_t rightLength, UChar *dest, int32_t destCapacity, UNormalizationMode mode, int32_t options, UErrorCode *pErrorCode) argument
[all...]
H A Dustr_imp.h122 UChar *dest, int32_t destCapacity,
131 UChar *dest, int32_t destCapacity,
138 UChar *dest, int32_t destCapacity,
147 UChar *dest, int32_t destCapacity,
156 UChar *dest, int32_t destCapacity,
166 UChar *dest, int32_t destCapacity,
180 uint8_t *dest, int32_t destCapacity,
187 uint8_t *dest, int32_t destCapacity,
197 uint8_t *dest, int32_t destCapacity,
213 * If length < destCapacity the
[all...]
H A Dlocdispnames.cpp300 UChar *dest, int32_t destCapacity,
332 int32_t copyLength=uprv_min(length, destCapacity);
339 u_charsToUChars(substitute, dest, uprv_min(length, destCapacity));
343 return u_terminateUChars(dest, destCapacity, length, pErrorCode);
351 UChar *dest, int32_t destCapacity,
365 if(destCapacity<0 || (destCapacity>0 && dest==NULL)) {
377 return u_terminateUChars(dest, destCapacity, 0, pErrorCode);
385 dest, destCapacity,
392 UChar *dest, int32_t destCapacity,
295 _getStringOrCopyKey(const char *path, const char *locale, const char *tableKey, const char* subTableKey, const char *itemKey, const char *substitute, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode) argument
349 _getDisplayNameForComponent(const char *locale, const char *displayLocale, UChar *dest, int32_t destCapacity, UDisplayNameGetter *getter, const char *tag, UErrorCode *pErrorCode) argument
390 uloc_getDisplayLanguage(const char *locale, const char *displayLocale, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode) argument
399 uloc_getDisplayScript(const char* locale, const char* displayLocale, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode) argument
418 uloc_getDisplayScriptInContext(const char* locale, const char* displayLocale, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode) argument
428 uloc_getDisplayCountry(const char *locale, const char *displayLocale, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode) argument
442 uloc_getDisplayVariant(const char *locale, const char *displayLocale, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode) argument
463 uloc_getDisplayName(const char *locale, const char *displayLocale, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode) argument
730 uloc_getDisplayKeyword(const char* keyword, const char* displayLocale, UChar* dest, int32_t destCapacity, UErrorCode* status) argument
761 uloc_getDisplayKeywordValue( const char* locale, const char* keyword, const char* displayLocale, UChar* dest, int32_t destCapacity, UErrorCode* status) argument
[all...]
H A Dustr_titlecase_brkiter.cpp51 u_strToTitle(UChar *dest, int32_t destCapacity, argument
65 dest, destCapacity,
76 UChar *dest, int32_t destCapacity,
86 dest, destCapacity,
75 ucasemap_toTitle(UCaseMap *csm, UChar *dest, int32_t destCapacity, const UChar *src, int32_t srcLength, UErrorCode *pErrorCode) argument
H A Dustrcase_locale.cpp85 u_strToLower(UChar *dest, int32_t destCapacity, argument
93 dest, destCapacity,
99 u_strToUpper(UChar *dest, int32_t destCapacity, argument
107 dest, destCapacity,
H A Dustr_wcs.cpp64 int32_t destCapacity,
202 if(0 < count && count <= destCapacity){
221 u_terminateWChars(dest,destCapacity,count,pErrorCode);
231 int32_t destCapacity,
243 (destCapacity<0) || (dest == NULL && destCapacity > 0)
254 if(0 < srcLength && srcLength <= destCapacity){
261 u_terminateUChars(dest,destCapacity,srcLength,pErrorCode);
267 return (wchar_t*)u_strToUTF32((UChar32*)dest, destCapacity, pDestLength,
272 return _strToWCS(dest,destCapacity,pDestLengt
63 _strToWCS(wchar_t *dest, int32_t destCapacity, int32_t *pDestLength, const UChar *src, int32_t srcLength, UErrorCode *pErrorCode) argument
230 u_strToWCS(wchar_t *dest, int32_t destCapacity, int32_t *pDestLength, const UChar *src, int32_t srcLength, UErrorCode *pErrorCode) argument
281 _strFromWCS( UChar *dest, int32_t destCapacity, int32_t *pDestLength, const wchar_t *src, int32_t srcLength, UErrorCode *pErrorCode) argument
484 u_strFromWCS(UChar *dest, int32_t destCapacity, int32_t *pDestLength, const wchar_t *src, int32_t srcLength, UErrorCode *pErrorCode) argument
[all...]
H A Dustrcase.cpp40 appendResult(UChar *dest, int32_t destIndex, int32_t destCapacity, argument
58 if(destIndex<destCapacity) {
63 U16_APPEND(dest, destIndex, destCapacity, c, isError);
70 if((destIndex+length)<=destCapacity) {
129 UChar *dest, int32_t destCapacity,
148 if((destIndex<destCapacity) && (c<0 ? (c2=~c)<=0xffff : UCASE_MAX_STRING_LENGTH<c && (c2=c)<=0xffff)) {
152 destIndex=appendResult(dest, destIndex, destCapacity, c, s);
156 if(destIndex>destCapacity) {
166 UChar *dest, int32_t destCapacity,
239 if((destIndex+length)<=destCapacity) {
128 _caseMap(const UCaseMap *csm, UCaseMapFull *map, UChar *dest, int32_t destCapacity, const UChar *src, UCaseContext *csc, int32_t srcStart, int32_t srcLimit, UErrorCode *pErrorCode) argument
165 ustrcase_internalToTitle(const UCaseMap *csm, UChar *dest, int32_t destCapacity, const UChar *src, int32_t srcLength, UErrorCode *pErrorCode) argument
300 ustrcase_internalToLower(const UCaseMap *csm, UChar *dest, int32_t destCapacity, const UChar *src, int32_t srcLength, UErrorCode *pErrorCode) argument
315 ustrcase_internalToUpper(const UCaseMap *csm, UChar *dest, int32_t destCapacity, const UChar *src, int32_t srcLength, UErrorCode *pErrorCode) argument
330 ustr_foldCase(const UCaseProps *csp, UChar *dest, int32_t destCapacity, const UChar *src, int32_t srcLength, uint32_t options, UErrorCode *pErrorCode) argument
360 ustrcase_internalFold(const UCaseMap *csm, UChar *dest, int32_t destCapacity, const UChar *src, int32_t srcLength, UErrorCode *pErrorCode) argument
368 ustrcase_map(const UCaseMap *csm, UChar *dest, int32_t destCapacity, const UChar *src, int32_t srcLength, UStringCaseMapper *stringCaseMapper, UErrorCode *pErrorCode) argument
437 u_strFoldCase(UChar *dest, int32_t destCapacity, const UChar *src, int32_t srcLength, uint32_t options, UErrorCode *pErrorCode) argument
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Didnaref.h41 * @param destCapacity Size of dest.
58 * U_BUFFER_OVERFLOW_ERROR if destCapacity is not enough
64 UChar* dest, int32_t destCapacity,
80 * @param destCapacity Size of dest.
97 * U_BUFFER_OVERFLOW_ERROR if destCapacity is not enough
103 UChar* dest, int32_t destCapacity,
124 * @param destCapacity Size of dest.
141 * U_BUFFER_OVERFLOW_ERROR if destCapacity is not enough
147 UChar* dest, int32_t destCapacity,
164 * @param destCapacity Siz
[all...]
/external/chromium_org/third_party/icu/source/tools/genrb/
H A Dprscmnts.h34 UChar** dest, int32_t destCapacity,
41 UChar** dest, int32_t destCapacity,
45 UChar** dest, int32_t destCapacity,
50 UChar** dest, int32_t destCapacity,
/external/icu4c/test/intltest/
H A Didnaref.h41 * @param destCapacity Size of dest.
58 * U_BUFFER_OVERFLOW_ERROR if destCapacity is not enough
63 UChar* dest, int32_t destCapacity,
79 * @param destCapacity Size of dest.
96 * U_BUFFER_OVERFLOW_ERROR if destCapacity is not enough
101 UChar* dest, int32_t destCapacity,
122 * @param destCapacity Size of dest.
139 * U_BUFFER_OVERFLOW_ERROR if destCapacity is not enough
144 UChar* dest, int32_t destCapacity,
161 * @param destCapacity Siz
[all...]
/external/icu4c/tools/genrb/
H A Dprscmnts.h34 UChar** dest, int32_t destCapacity,
41 UChar** dest, int32_t destCapacity,
45 UChar** dest, int32_t destCapacity,
50 UChar** dest, int32_t destCapacity,
/external/chromium_org/third_party/icu/source/common/unicode/
H A Ducasemap.h254 * @param destCapacity The size of the buffer (number of bytes). If it is 0, then
262 * in which case it will be greater than destCapacity.
269 UChar *dest, int32_t destCapacity,
285 * @param destCapacity The size of the buffer (number of bytes). If it is 0, then
293 * in which case it will be greater than destCapacity.
300 char *dest, int32_t destCapacity,
314 * @param destCapacity The size of the buffer (number of bytes). If it is 0, then
322 * in which case it will be greater than destCapacity.
329 char *dest, int32_t destCapacity,
364 * @param destCapacity Th
[all...]
/external/icu4c/common/unicode/
H A Ducasemap.h254 * @param destCapacity The size of the buffer (number of bytes). If it is 0, then
262 * in which case it will be greater than destCapacity.
269 UChar *dest, int32_t destCapacity,
285 * @param destCapacity The size of the buffer (number of bytes). If it is 0, then
293 * in which case it will be greater than destCapacity.
300 char *dest, int32_t destCapacity,
314 * @param destCapacity The size of the buffer (number of bytes). If it is 0, then
322 * in which case it will be greater than destCapacity.
329 char *dest, int32_t destCapacity,
364 * @param destCapacity Th
[all...]

Completed in 779 milliseconds

123456