Lines Matching refs:destCapacity
187 uint32_t *dest, int32_t destCapacity, in u_parseCodePoints() argument
196 if(s==NULL || destCapacity<0 || (destCapacity>0 && dest==NULL)) { in u_parseCodePoints()
216 if(count<destCapacity) { in u_parseCodePoints()
235 UChar *dest, int32_t destCapacity, in u_parseString() argument
245 if(s==NULL || destCapacity<0 || (destCapacity>0 && dest==NULL)) { in u_parseString()
257 if(destLength<destCapacity) { in u_parseString()
259 } else if(destLength==destCapacity) { in u_parseString()
281 if((destLength+U16_LENGTH(value))<=destCapacity) { in u_parseString()
362 u_parseUTF8(const char *source, int32_t sLen, char *dest, int32_t destCapacity, UErrorCode *status)… in u_parseUTF8() argument
372 if(i < destCapacity) { in u_parseUTF8()
378 return u_terminateChars(dest, destCapacity, i, status); in u_parseUTF8()