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

1 2 3 4

  /external/icu4c/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/icu4c/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,
unorm.cpp 99 UChar *dest, int32_t destCapacity,
106 src, srcLength, dest, destCapacity, pErrorCode);
109 src, srcLength, dest, destCapacity, pErrorCode);
118 UChar *dest, int32_t destCapacity,
139 if( destCapacity<0 || (dest==NULL && destCapacity>0) ||
150 return u_terminateUChars(dest, destCapacity, 0, pErrorCode);
179 UnicodeString destString(dest, 0, destCapacity);
181 n2->normalize(buffer, destString, *pErrorCode).extract(dest, destCapacity, *pErrorCode);
188 return buffer.extract(dest, destCapacity, *pErrorCode)
    [all...]
ustr_imp.h 111 UChar *dest, int32_t destCapacity,
118 UChar *dest, int32_t destCapacity,
127 UChar *dest, int32_t destCapacity,
140 UChar *dest, int32_t destCapacity,
147 * If length < destCapacity then NUL-terminate.
148 * If length == destCapacity then do not terminate but set U_STRING_NOT_TERMINATED_WARNING.
149 * If length > destCapacity then do not terminate but set U_BUFFER_OVERFLOW_ERROR.
151 * @param dest Destination buffer, can be NULL if destCapacity==0.
152 * @param destCapacity Number of UChars available at dest.
158 u_terminateUChars(UChar *dest, int32_t destCapacity, int32_t length, UErrorCode *pErrorCode)
    [all...]
ustr_wcs.c 68 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...]
locdispnames.cpp 299 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,
    [all...]
ucasemap.c 130 appendResult(uint8_t *dest, int32_t destIndex, int32_t destCapacity,
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,
    [all...]
unistr_cnv.cpp 215 UnicodeString::extract(char *dest, int32_t destCapacity,
223 if(isBogus() || destCapacity<0 || (destCapacity>0 && dest==0)) {
230 return u_terminateChars(dest, destCapacity, 0, &errorCode);
247 int32_t len=doExtract(0, length(), dest, destCapacity, cnv, errorCode);
259 char *dest, int32_t destCapacity,
264 if(destCapacity!=0) {
274 if(destCapacity==0) {
276 } else if(destCapacity==-1) {
277 // Pin the limit to U_MAX_PTR if the "magic" destCapacity is used
    [all...]
ustrcase.c 34 appendResult(UChar *dest, int32_t destIndex, int32_t destCapacity,
52 if(destIndex<destCapacity) {
57 U16_APPEND(dest, destIndex, destCapacity, c, isError);
64 if((destIndex+length)<=destCapacity) {
123 UChar *dest, int32_t destCapacity,
142 if((destIndex<destCapacity) && (c<0 ? (c2=~c)<=0xffff : UCASE_MAX_STRING_LENGTH<c && (c2=c)<=0xffff)) {
146 destIndex=appendResult(dest, destIndex, destCapacity, c, s);
150 if(destIndex>destCapacity) {
210 UChar *dest, int32_t destCapacity,
283 if((destIndex+length)<=destCapacity) {
    [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,
544 if(b2Len <= destCapacity) {
573 if(srcLength <= destCapacity){
598 if(dest && srcLength <= destCapacity){
607 return u_terminateUChars(dest, destCapacity, reqLength, status);
612 UChar* dest, int32_t destCapacity,
    [all...]
punycode.c 180 UChar *dest, int32_t destCapacity,
193 if(src==NULL || srcLength<-1 || (dest==NULL && destCapacity!=0)) {
216 if(destLength<destCapacity) {
249 if(destLength<destCapacity) {
276 if(destLength<destCapacity) {
347 if(destLength<destCapacity) {
354 if(destLength<destCapacity) {
368 return u_terminateUChars(dest, destCapacity, destLength, pErrorCode);
373 UChar *dest, int32_t destCapacity,
385 if(src==NULL || srcLength<-1 || (dest==NULL && destCapacity!=0))
    [all...]
ustrtrns.c 35 int32_t destCapacity,
53 (destCapacity<0) || (dest == NULL && destCapacity > 0) ||
65 destLimit = dest + destCapacity;
128 u_terminateUChars(dest, destCapacity, reqLength, pErrorCode);
135 int32_t destCapacity,
141 dest, destCapacity, pDestLength,
149 int32_t destCapacity,
168 (destCapacity<0) || (dest == NULL && destCapacity > 0) |
    [all...]
  /external/icu4c/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/icu4c/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 76 UChar** dest, int32_t destCapacity,
102 return out.extract(*dest, destCapacity,*status);
113 UChar** dest, int32_t destCapacity,
129 int32_t destLen = stringArray[0].extract(*dest, destCapacity, *status);
173 UChar** dest, int32_t destCapacity,
202 return out.extract(*dest, destCapacity,*status);
214 UChar** dest, int32_t destCapacity,
218 int32_t destLen = getText(source, srcLen, dest, destCapacity, notePatternString, status);
224 UChar** dest, int32_t destCapacity,
228 int32_t destLen = getText(source, srcLen, dest, destCapacity, notePatternString, status)
    [all...]
  /external/webkit/Source/WebCore/icu/unicode/
uidna.h 88 * @param destCapacity Size of dest.
111 * U_BUFFER_OVERFLOW_ERROR if destCapacity is not enough
117 UChar* dest, int32_t destCapacity,
133 * @param destCapacity Size of dest.
161 * U_BUFFER_OVERFLOW_ERROR if destCapacity is not enough
167 UChar* dest, int32_t destCapacity,
188 * @param destCapacity Size of dest.
211 * U_BUFFER_OVERFLOW_ERROR if destCapacity is not enough
217 UChar* dest, int32_t destCapacity,
234 * @param destCapacity Size of dest
    [all...]
  /external/webkit/Source/WebCore/platform/text/mac/
ShapeArabic.h 37 int32_t shapeArabic(const UChar *source, int32_t sourceLength, UChar *dest, int32_t destCapacity, uint32_t options, UErrorCode *pErrorCode);
  /external/webkit/Source/WebKit/mac/icu/unicode/
uidna.h 88 * @param destCapacity Size of dest.
111 * U_BUFFER_OVERFLOW_ERROR if destCapacity is not enough
117 UChar* dest, int32_t destCapacity,
133 * @param destCapacity Size of dest.
161 * U_BUFFER_OVERFLOW_ERROR if destCapacity is not enough
167 UChar* dest, int32_t destCapacity,
188 * @param destCapacity Size of dest.
211 * U_BUFFER_OVERFLOW_ERROR if destCapacity is not enough
217 UChar* dest, int32_t destCapacity,
234 * @param destCapacity Size of dest
    [all...]
  /external/icu4c/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...]
  /external/icu4c/tools/toolutil/
uparse.c 182 * store them as a UTF-32 string in dest[destCapacity]
187 uint32_t *dest, int32_t destCapacity,
196 if(s==NULL || destCapacity<0 || (destCapacity>0 && dest==NULL)) {
216 if(count<destCapacity) {
229 * store them as a string in dest[destCapacity]
235 UChar *dest, int32_t destCapacity,
245 if(s==NULL || destCapacity<0 || (destCapacity>0 && dest==NULL)) {
257 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/icu4c/i18n/unicode/
plurrule.h 258 * be NULL if destCapacity is 0.
259 * @param destCapacity The capacity of the array, must be at least 0.
262 * can be larger than destCapacity, but no more than
263 * destCapacity values will be written.
267 double *dest, int32_t destCapacity,
278 * be NULL if destCapacity is 0.
279 * @param destCapacity The capacity of the array, must be at least 0.
282 * If more than destCapacity samples are available, then
283 * only destCapacity are written, and destCapacity is returned as the count
    [all...]
  /external/icu4c/i18n/
uregex.cpp 636 int32_t destCapacity,
642 if (destCapacity < 0 || (destCapacity > 0 && dest == NULL)) {
647 if (destCapacity == 0 || regexp->fText != NULL) {
665 if (copyLength < destCapacity) {
667 } else if (copyLength == destCapacity) {
670 copyLength = destCapacity;
683 int32_t result = utext_extract(groupText, 0, utext_nativeLength(groupText), dest, destCapacity, status);
    [all...]

Completed in 848 milliseconds

1 2 3 4