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

1 2 3 4 5 6 7

  /external/chromium/third_party/icu/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/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/chromium/third_party/icu/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,
ustr_imp.h 133 UChar *dest, int32_t destCapacity,
143 UChar *dest, int32_t destCapacity,
155 UChar *dest, int32_t destCapacity,
169 UChar *dest, int32_t destCapacity,
176 * If length < destCapacity then NUL-terminate.
177 * If length == destCapacity then do not terminate but set U_STRING_NOT_TERMINATED_WARNING.
178 * If length > destCapacity then do not terminate but set U_BUFFER_OVERFLOW_ERROR.
180 * @param dest Destination buffer, can be NULL if destCapacity==0.
181 * @param destCapacity Number of UChars available at dest.
188 u_terminateUChars(UChar *dest, int32_t destCapacity, int32_t length, UErrorCode *pErrorCode)
    [all...]
ustr_wcs.c 61 int32_t destCapacity,
195 if(0 < count && count <= destCapacity){
214 u_terminateWChars(dest,destCapacity,count,pErrorCode);
224 int32_t destCapacity,
235 if((src==NULL) || (srcLength < -1) || (destCapacity<0) || (!dest && destCapacity > 0)){
245 if(0 < srcLength && srcLength <= destCapacity){
252 u_terminateUChars(dest,destCapacity,srcLength,pErrorCode);
258 return (wchar_t*)u_strToUTF32((UChar32*)dest, destCapacity, pDestLength,
263 return _strToWCS(dest,destCapacity,pDestLength,src,srcLength, pErrorCode)
    [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...]
  /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,
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...]
ustr_imp.h 126 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_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...]
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...]
  /external/chromium/third_party/icu/source/tools/toolutil/
uparse.h 82 uint32_t *dest, int32_t destCapacity,
94 * @param destCapacity Capacity of dest in numbers of UChars.
102 UChar *dest, int32_t destCapacity,
122 u_parseUTF8(const char *source, int32_t sLen, char *dest, int32_t destCapacity, UErrorCode *status);
  /external/chromium/third_party/icu/public/common/unicode/
uidna.h 86 * @param destCapacity Size of dest.
109 * U_BUFFER_OVERFLOW_ERROR if destCapacity is not enough
111 * in which case it will be greater than destCapacity.
116 UChar* dest, int32_t destCapacity,
132 * @param destCapacity Size of dest.
160 * U_BUFFER_OVERFLOW_ERROR if destCapacity is not enough
162 * in which case it will be greater than destCapacity.
167 UChar* dest, int32_t destCapacity,
188 * @param destCapacity Size of dest.
211 * U_BUFFER_OVERFLOW_ERROR if destCapacity is not enoug
    [all...]
ucasemap.h 234 * @param destCapacity The size of the buffer (number of bytes). If it is 0, then
242 * in which case it will be greater than destCapacity.
249 UChar *dest, int32_t destCapacity,
265 * @param destCapacity The size of the buffer (number of bytes). If it is 0, then
273 * in which case it will be greater than destCapacity.
280 char *dest, int32_t destCapacity,
294 * @param destCapacity The size of the buffer (number of bytes). If it is 0, then
302 * in which case it will be greater than destCapacity.
309 char *dest, int32_t destCapacity,
344 * @param destCapacity The size of the buffer (number of bytes). If it is 0, the
    [all...]
  /external/chromium/third_party/icu/source/test/intltest/
idnaref.h 41 * @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 Size of dest
    [all...]
  /external/chromium/third_party/icu/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,
  /external/icu4c/common/unicode/
uidna.h 85 * @param destCapacity Size of dest.
108 * U_BUFFER_OVERFLOW_ERROR if destCapacity is not enough
110 * in which case it will be greater than destCapacity.
115 UChar* dest, int32_t destCapacity,
130 * @param destCapacity Size of dest.
158 * U_BUFFER_OVERFLOW_ERROR if destCapacity is not enough
160 * in which case it will be greater than destCapacity.
165 UChar* dest, int32_t destCapacity,
186 * @param destCapacity Size of dest.
209 * U_BUFFER_OVERFLOW_ERROR if destCapacity is not enoug
    [all...]
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...]
  /external/icu4c/test/intltest/
idnaref.h 41 * @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 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,
  /external/webkit/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/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/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...]

Completed in 505 milliseconds

1 2 3 4 5 6 7