Lines Matching refs:destCapacity
190 uint32_t *dest, int32_t destCapacity, in u_parseCodePoints() argument
199 if(s==NULL || destCapacity<0 || (destCapacity>0 && dest==NULL)) { in u_parseCodePoints()
219 if(count<destCapacity) { in u_parseCodePoints()
238 UChar *dest, int32_t destCapacity, in u_parseString() argument
248 if(s==NULL || destCapacity<0 || (destCapacity>0 && dest==NULL)) { in u_parseString()
261 if(destLength<destCapacity) { in u_parseString()
263 } else if(destLength==destCapacity) { in u_parseString()
285 if((destLength+U16_LENGTH(value))<=destCapacity) { in u_parseString()
366 u_parseUTF8(const char *source, int32_t sLen, char *dest, int32_t destCapacity, UErrorCode *status)… in u_parseUTF8() argument
376 if(i < destCapacity) { in u_parseUTF8()
382 return u_terminateChars(dest, destCapacity, i, status); in u_parseUTF8()