Searched defs:destCapacity (Results 1 - 25 of 85) sorted by relevance

1234

/external/icu/icu4c/source/common/
H A Ducasemap_titlecase_brkiter.cpp45 char *dest, int32_t destCapacity,
60 (uint8_t *)dest, destCapacity,
44 ucasemap_utf8ToTitle(UCaseMap *csm, char *dest, int32_t destCapacity, const char *src, int32_t srcLength, UErrorCode *pErrorCode) argument
H A Dunistr_titlecase_brkiter.cpp31 UChar *dest, int32_t destCapacity,
35 return ustrcase_internalToTitle(csm, dest, destCapacity, src, srcLength, pErrorCode);
30 unistr_case_internalToTitle(const UCaseMap *csm, UChar *dest, int32_t destCapacity, const UChar *src, int32_t srcLength, UErrorCode *pErrorCode) argument
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 Dustrtrns.cpp41 int32_t destCapacity,
59 (destCapacity<0) || (dest == NULL && destCapacity > 0) ||
71 destLimit = (dest!=NULL)?(dest + destCapacity):NULL;
134 u_terminateUChars(dest, destCapacity, reqLength, pErrorCode);
141 int32_t destCapacity,
147 dest, destCapacity, pDestLength,
155 int32_t destCapacity,
174 (destCapacity<0) || (dest == NULL && destCapacity >
40 u_strFromUTF32WithSub(UChar *dest, int32_t destCapacity, int32_t *pDestLength, const UChar32 *src, int32_t srcLength, UChar32 subchar, int32_t *pNumSubstitutions, UErrorCode *pErrorCode) argument
140 u_strFromUTF32(UChar *dest, int32_t destCapacity, int32_t *pDestLength, const UChar32 *src, int32_t srcLength, UErrorCode *pErrorCode) argument
154 u_strToUTF32WithSub(UChar32 *dest, int32_t destCapacity, int32_t *pDestLength, const UChar *src, int32_t srcLength, UChar32 subchar, int32_t *pNumSubstitutions, UErrorCode *pErrorCode) argument
246 u_strToUTF32(UChar32 *dest, int32_t destCapacity, int32_t *pDestLength, const UChar *src, int32_t srcLength, UErrorCode *pErrorCode) argument
[all...]
H A Dubidiwrt.c359 int32_t length, destCapacity; local
394 /* destSize shrinks, later destination length=destCapacity-destSize */
396 destCapacity=destSize;
642 return u_terminateUChars(saveDest, destCapacity, destCapacity-destSize, pErrorCode);
H A Dunistr_cnv.cpp215 UnicodeString::extract(char *dest, int32_t destCapacity, argument
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 i
258 doExtract(int32_t start, int32_t length, char *dest, int32_t destCapacity, UConverter *cnv, UErrorCode &errorCode) const 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...]
/external/chromium_org/third_party/icu/source/common/
H A Dubidiwrt.c358 int32_t length, destCapacity; local
393 /* destSize shrinks, later destination length=destCapacity-destSize */
395 destCapacity=destSize;
629 return u_terminateUChars(saveDest, destCapacity, destCapacity-destSize, pErrorCode);
H A Dunistr_cnv.cpp215 UnicodeString::extract(char *dest, int32_t destCapacity, argument
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 i
258 doExtract(int32_t start, int32_t length, char *dest, int32_t destCapacity, UConverter *cnv, UErrorCode &errorCode) const 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,
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 Dpunycode.c180 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!
179 u_strToPunycode(const UChar *src, int32_t srcLength, UChar *dest, int32_t destCapacity, const UBool *caseFlags, UErrorCode *pErrorCode) argument
372 u_strFromPunycode(const UChar *src, int32_t srcLength, UChar *dest, int32_t destCapacity, UBool *caseFlags, 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...]
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 Dustrtrns.c35 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 >
34 u_strFromUTF32WithSub(UChar *dest, int32_t destCapacity, int32_t *pDestLength, const UChar32 *src, int32_t srcLength, UChar32 subchar, int32_t *pNumSubstitutions, UErrorCode *pErrorCode) argument
134 u_strFromUTF32(UChar *dest, int32_t destCapacity, int32_t *pDestLength, const UChar32 *src, int32_t srcLength, UErrorCode *pErrorCode) argument
148 u_strToUTF32WithSub(UChar32 *dest, int32_t destCapacity, int32_t *pDestLength, const UChar *src, int32_t srcLength, UChar32 subchar, int32_t *pNumSubstitutions, UErrorCode *pErrorCode) argument
240 u_strToUTF32(UChar32 *dest, int32_t destCapacity, int32_t *pDestLength, const UChar *src, int32_t srcLength, UErrorCode *pErrorCode) argument
394 u_strFromUTF8WithSub(UChar *dest, int32_t destCapacity, int32_t *pDestLength, const char* src, int32_t srcLength, UChar32 subchar, int32_t *pNumSubstitutions, UErrorCode *pErrorCode) argument
718 u_strFromUTF8(UChar *dest, int32_t destCapacity, int32_t *pDestLength, const char* src, int32_t srcLength, UErrorCode *pErrorCode) argument
732 u_strFromUTF8Lenient(UChar *dest, int32_t destCapacity, int32_t *pDestLength, const char *src, int32_t srcLength, UErrorCode *pErrorCode) argument
971 u_strToUTF8WithSub(char *dest, int32_t destCapacity, int32_t *pDestLength, const UChar *pSrc, int32_t srcLength, UChar32 subchar, int32_t *pNumSubstitutions, UErrorCode *pErrorCode) argument
1235 u_strToUTF8(char *dest, int32_t destCapacity, int32_t *pDestLength, const UChar *pSrc, int32_t srcLength, UErrorCode *pErrorCode) argument
1249 u_strFromJavaModifiedUTF8WithSub( UChar *dest, int32_t destCapacity, int32_t *pDestLength, const char *src, int32_t srcLength, UChar32 subchar, int32_t *pNumSubstitutions, UErrorCode *pErrorCode) argument
1502 u_strToJavaModifiedUTF8( char *dest, int32_t destCapacity, int32_t *pDestLength, const UChar *src, int32_t srcLength, UErrorCode *pErrorCode) argument
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dnptrans.cpp140 UChar* dest, int32_t destCapacity,
149 if(src==NULL || srcLength<-1 || (dest==NULL && destCapacity!=0)) {
174 if(bufLen < destCapacity){
178 return u_terminateUChars(dest, destCapacity, bufLen, &status);
185 UChar* dest, int32_t destCapacity,
195 if(src==NULL || srcLength<-1 || (dest==NULL && destCapacity!=0)) {
266 if(b1Len <= destCapacity){
271 return u_terminateUChars(dest, destCapacity, b1Len, &status);
139 map(const UChar* src, int32_t srcLength, UChar* dest, int32_t destCapacity, UBool allowUnassigned, UParseError* , UErrorCode& status ) argument
184 process( const UChar* src, int32_t srcLength, UChar* dest, int32_t destCapacity, UBool allowUnassigned, UParseError* parseError, UErrorCode& status ) argument
/external/chromium_org/third_party/icu/source/tools/genrb/
H A Dprscmnts.cpp76 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, notePatternStrin
75 getText(const UChar* source, int32_t srcLen, UChar** dest, int32_t destCapacity, UnicodeString patternString, UErrorCode* status) argument
112 getDescription( const UChar* source, int32_t srcLen, UChar** dest, int32_t destCapacity, UErrorCode* status) argument
172 getAt(const UChar* source, int32_t srcLen, UChar** dest, int32_t destCapacity, int32_t index, UParseCommentsOption option, UErrorCode* status) argument
213 getTranslate( const UChar* source, int32_t srcLen, UChar** dest, int32_t destCapacity, UErrorCode* status) argument
223 getNote(const UChar* source, int32_t srcLen, UChar** dest, int32_t destCapacity, UErrorCode* status) argument
[all...]
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Duparse.c182 * 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) {
186 u_parseCodePoints(const char *s, uint32_t *dest, int32_t destCapacity, UErrorCode *pErrorCode) argument
234 u_parseString(const char *s, UChar *dest, int32_t destCapacity, uint32_t *pFirst, UErrorCode *pErrorCode) argument
362 u_parseUTF8(const char *source, int32_t sLen, char *dest, int32_t destCapacity, UErrorCode *status) argument
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dnptrans.cpp140 UChar* dest, int32_t destCapacity,
149 if(src==NULL || srcLength<-1 || (dest==NULL && destCapacity!=0)) {
174 if(bufLen < destCapacity){
178 return u_terminateUChars(dest, destCapacity, bufLen, &status);
185 UChar* dest, int32_t destCapacity,
195 if(src==NULL || srcLength<-1 || (dest==NULL && destCapacity!=0)) {
266 if(b1Len <= destCapacity){
271 return u_terminateUChars(dest, destCapacity, b1Len, &status);
139 map(const UChar* src, int32_t srcLength, UChar* dest, int32_t destCapacity, UBool allowUnassigned, UParseError* , UErrorCode& status ) argument
184 process( const UChar* src, int32_t srcLength, UChar* dest, int32_t destCapacity, UBool allowUnassigned, UParseError* parseError, UErrorCode& status ) argument
/external/icu/icu4c/source/tools/genrb/
H A Dprscmnts.cpp86 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, notePatternStrin
85 getText(const UChar* source, int32_t srcLen, UChar** dest, int32_t destCapacity, UnicodeString patternString, UErrorCode* status) argument
122 getDescription( const UChar* source, int32_t srcLen, UChar** dest, int32_t destCapacity, UErrorCode* status) argument
183 getAt(const UChar* source, int32_t srcLen, UChar** dest, int32_t destCapacity, int32_t index, UParseCommentsOption option, UErrorCode* status) argument
225 getTranslate( const UChar* source, int32_t srcLen, UChar** dest, int32_t destCapacity, UErrorCode* status) argument
235 getNote(const UChar* source, int32_t srcLen, UChar** dest, int32_t destCapacity, UErrorCode* status) argument
[all...]
/external/icu/icu4c/source/tools/toolutil/
H A Duparse.c183 * 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) {
187 u_parseCodePoints(const char *s, uint32_t *dest, int32_t destCapacity, UErrorCode *pErrorCode) argument
235 u_parseString(const char *s, UChar *dest, int32_t destCapacity, uint32_t *pFirst, UErrorCode *pErrorCode) argument
364 u_parseUTF8(const char *source, int32_t sLen, char *dest, int32_t destCapacity, UErrorCode *status) argument
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Drepattrn.cpp605 int32_t destCapacity,
616 r = m.split(input, dest, destCapacity, status);
626 int32_t destCapacity,
637 r = m.split(input, dest, destCapacity, status);
603 split(const UnicodeString &input, UnicodeString dest[], int32_t destCapacity, UErrorCode &status) const argument
624 split(UText *input, UText *dest[], int32_t destCapacity, UErrorCode &status) const argument
H A Dudatpg.cpp218 UChar *dest, int32_t destCapacity,
222 dest, destCapacity, pErrorCode);
230 UChar *dest, int32_t destCapacity,
242 return result.extract(dest, destCapacity, *pErrorCode);
215 udatpg_replaceFieldTypes(UDateTimePatternGenerator *dtpg, const UChar *pattern, int32_t patternLength, const UChar *skeleton, int32_t skeletonLength, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode) argument
226 udatpg_replaceFieldTypesWithOptions(UDateTimePatternGenerator *dtpg, const UChar *pattern, int32_t patternLength, const UChar *skeleton, int32_t skeletonLength, UDateTimePatternMatchOptions options, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode) argument
H A Duspoof_wsconf.cpp76 URegularExpression *e, int32_t group, char *destBuf, int32_t destCapacity, UErrorCode &status) {
82 if (U_FAILURE(status) || len == -1 || len >= destCapacity) {
86 s.extract(0, len, destBuf, destCapacity, US_INV);
75 extractGroup( URegularExpression *e, int32_t group, char *destBuf, int32_t destCapacity, UErrorCode &status) argument
/external/chromium_org/third_party/icu/source/test/cintltst/
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...]

Completed in 1654 milliseconds

1234