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

1 2 3 4

  /external/icu/icu4c/source/test/cintltst/
nfsprep.h 46 * @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,
nfsprep.c 41 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, reqLen, status)
    [all...]
  /external/icu/icu4c/source/common/
punycode.h 47 * @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,
ucasemap.cpp 122 appendResult(uint8_t *dest, int32_t destIndex, int32_t destCapacity,
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,
    [all...]
unorm.cpp 97 UChar *dest, int32_t destCapacity,
104 src, srcLength, dest, destCapacity, pErrorCode);
107 src, srcLength, dest, destCapacity, pErrorCode);
116 UChar *dest, int32_t destCapacity,
123 if(destCapacity<0 || (dest==NULL && destCapacity>0) || src==NULL) {
132 return u_terminateUChars(dest, destCapacity, 0, pErrorCode);
161 UnicodeString destString(dest, 0, destCapacity);
163 n2->normalize(buffer, destString, *pErrorCode).extract(dest, destCapacity, *pErrorCode);
170 return buffer.extract(dest, destCapacity, *pErrorCode)
    [all...]
ustr_imp.h 141 UChar *dest, int32_t destCapacity,
150 UChar *dest, int32_t destCapacity,
157 UChar *dest, int32_t destCapacity,
166 UChar *dest, int32_t destCapacity,
175 UChar *dest, int32_t destCapacity,
185 UChar *dest, int32_t destCapacity,
199 uint8_t *dest, int32_t destCapacity,
206 uint8_t *dest, int32_t destCapacity,
216 uint8_t *dest, int32_t destCapacity,
232 * If length < destCapacity then NUL-terminate
    [all...]
locdispnames.cpp 300 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,
    [all...]
ustr_titlecase_brkiter.cpp 51 u_strToTitle(UChar *dest, int32_t destCapacity,
65 dest, destCapacity,
76 UChar *dest, int32_t destCapacity,
86 dest, destCapacity,
ustrcase_locale.cpp 85 u_strToLower(UChar *dest, int32_t destCapacity,
93 dest, destCapacity,
99 u_strToUpper(UChar *dest, int32_t destCapacity,
107 dest, destCapacity,
ustr_wcs.cpp 64 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,pDestLength,src,srcLength, pErrorCode)
    [all...]
ustrcase.cpp 39 appendResult(UChar *dest, int32_t destIndex, int32_t destCapacity,
57 if(destIndex<destCapacity) {
62 U16_APPEND(dest, destIndex, destCapacity, c, isError);
69 if((destIndex+length)<=destCapacity) {
128 UChar *dest, int32_t destCapacity,
147 if((destIndex<destCapacity) && (c<0 ? (c2=~c)<=0xffff : UCASE_MAX_STRING_LENGTH<c && (c2=c)<=0xffff)) {
151 destIndex=appendResult(dest, destIndex, destCapacity, c, s);
155 if(destIndex>destCapacity) {
165 UChar *dest, int32_t destCapacity,
238 if((destIndex+length)<=destCapacity) {
    [all...]
ucasemap_titlecase_brkiter.cpp 45 char *dest, int32_t destCapacity,
60 (uint8_t *)dest, destCapacity,
unistr_cnv.cpp 205 UnicodeString::extract(char *dest, int32_t destCapacity,
213 if(isBogus() || destCapacity<0 || (destCapacity>0 && dest==0)) {
220 return u_terminateChars(dest, destCapacity, 0, &errorCode);
237 int32_t len=doExtract(0, length(), dest, destCapacity, cnv, errorCode);
249 char *dest, int32_t destCapacity,
254 if(destCapacity!=0) {
264 if(destCapacity==0) {
266 } else if(destCapacity==-1) {
267 // Pin the limit to U_MAX_PTR if the "magic" destCapacity is used
    [all...]
uidna.cpp 195 UChar* dest, int32_t destCapacity,
318 if(b1Len <= destCapacity){
360 if(reqLength > destCapacity){
390 return u_terminateUChars(dest, destCapacity, reqLength, status);
395 UChar* dest, int32_t destCapacity,
543 if(b2Len <= destCapacity) {
572 if(srcLength <= destCapacity){
597 if(dest && srcLength <= destCapacity){
606 return u_terminateUChars(dest, destCapacity, reqLength, status);
611 UChar* dest, int32_t destCapacity,
    [all...]
punycode.cpp 183 UChar *dest, int32_t destCapacity,
196 if(src==NULL || srcLength<-1 || (dest==NULL && destCapacity!=0)) {
219 if(destLength<destCapacity) {
252 if(destLength<destCapacity) {
279 if(destLength<destCapacity) {
350 if(destLength<destCapacity) {
357 if(destLength<destCapacity) {
371 return u_terminateUChars(dest, destCapacity, destLength, pErrorCode);
376 UChar *dest, int32_t destCapacity,
388 if(src==NULL || srcLength<-1 || (dest==NULL && destCapacity!=0))
    [all...]
ustrtrns.cpp 39 int32_t destCapacity,
57 (destCapacity<0) || (dest == NULL && destCapacity > 0) ||
69 destLimit = (dest!=NULL)?(dest + destCapacity):NULL;
132 u_terminateUChars(dest, destCapacity, reqLength, pErrorCode);
139 int32_t destCapacity,
145 dest, destCapacity, pDestLength,
153 int32_t destCapacity,
172 (destCapacity<0) || (dest == NULL && destCapacity > 0) |
    [all...]
  /external/icu/icu4c/source/test/intltest/
idnaref.h 41 * @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 Size of dest
    [all...]
  /external/icu/icu4c/source/tools/genrb/
prscmnts.h 34 UChar** dest, int32_t destCapacity,
41 UChar** dest, int32_t destCapacity,
45 UChar** dest, int32_t destCapacity,
50 UChar** dest, int32_t destCapacity,
prscmnts.cpp 86 UChar** dest, int32_t destCapacity,
112 return out.extract(*dest, destCapacity,*status);
123 UChar** dest, int32_t destCapacity,
139 int32_t destLen = stringArray[0].extract(*dest, destCapacity, *status);
184 UChar** dest, int32_t destCapacity,
214 return out.extract(*dest, destCapacity,*status);
226 UChar** dest, int32_t destCapacity,
230 int32_t destLen = getText(source, srcLen, dest, destCapacity, notePatternString, status);
236 UChar** dest, int32_t destCapacity,
240 int32_t destLen = getText(source, srcLen, dest, destCapacity, notePatternString, status)
    [all...]
  /external/icu/icu4c/source/common/unicode/
ucasemap.h 254 * @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 The size of the buffer (number of bytes). If it is 0, the
    [all...]
ustring.h     [all...]
unorm.h 365 * @param dest The output buffer; can be NULL if destCapacity==0 for pure preflighting.
366 * @param destCapacity The number of UChars that fit into dest.
386 UChar *dest, int32_t destCapacity,
398 * @param dest The output buffer; can be NULL if destCapacity==0 for pure preflighting.
399 * @param destCapacity The number of UChars that fit into dest.
419 UChar *dest, int32_t destCapacity,
447 * @param dest The output buffer; can be NULL if destCapacity==0 for pure preflighting.
448 * @param destCapacity The number of UChars that fit into dest.
464 UChar *dest, int32_t destCapacity,
  /external/icu/icu4c/source/tools/toolutil/
uparse.c 183 * store them as a UTF-32 string in dest[destCapacity]
188 uint32_t *dest, int32_t destCapacity,
197 if(s==NULL || destCapacity<0 || (destCapacity>0 && dest==NULL)) {
217 if(count<destCapacity) {
230 * store them as a string in dest[destCapacity]
236 UChar *dest, int32_t destCapacity,
246 if(s==NULL || destCapacity<0 || (destCapacity>0 && dest==NULL)) {
259 if(destLength<destCapacity) {
    [all...]
uparse.h 97 uint32_t *dest, int32_t destCapacity,
109 * @param destCapacity Capacity of dest in numbers of UChars.
117 UChar *dest, int32_t destCapacity,
147 u_parseUTF8(const char *source, int32_t sLen, char *dest, int32_t destCapacity, UErrorCode *status);
  /external/icu/icu4c/source/i18n/
uregex.cpp 667 int32_t destCapacity,
673 if (destCapacity < 0 || (destCapacity > 0 && dest == NULL)) {
678 if (destCapacity == 0 || regexp->fText != NULL) {
696 if (copyLength < destCapacity) {
698 } else if (copyLength == destCapacity) {
701 copyLength = destCapacity;
721 int32_t length = utext_extract(regexp->fMatcher->inputText(), start, limit, dest, destCapacity, status);
    [all...]

Completed in 519 milliseconds

1 2 3 4