Lines Matching refs:patternLength

63                 int32_t     patternLength,
75 actLen = u_vformatMessage(locale,pattern,patternLength,result,resultLength,ap,status);
85 int32_t patternLength,
93 UMessageFormat *fmt = umsg_open(pattern,patternLength,locale,nullptr,status);
102 int32_t patternLength,
115 actLen = u_vformatMessageWithError(locale,pattern,patternLength,result,resultLength,parseError,ap,status);
125 int32_t patternLength,
134 UMessageFormat *fmt = umsg_open(pattern,patternLength,locale,parseError,status);
148 int32_t patternLength,
160 u_vparseMessage(locale,pattern,patternLength,source,sourceLength,ap,status);
168 int32_t patternLength,
175 UMessageFormat *fmt = umsg_open(pattern,patternLength,locale,nullptr,status);
184 int32_t patternLength,
198 u_vparseMessageWithError(locale,pattern,patternLength,source,sourceLength,ap,error,status);
205 int32_t patternLength,
213 UMessageFormat *fmt = umsg_open(pattern,patternLength,locale,error,status);
227 int32_t patternLength,
237 if(pattern==nullptr||patternLength<-1){
248 int32_t len = (patternLength == -1 ? u_strlen(pattern) : patternLength);
249 UnicodeString patString(patternLength == -1, pattern, len);
315 int32_t patternLength,
324 if(fmt==nullptr || (pattern==nullptr && patternLength!=0) || patternLength<-1) {
334 ((MessageFormat*)fmt)->applyPattern(UnicodeString(pattern,patternLength),*parseError,*status);
617 int32_t patternLength,
630 if (pattern == nullptr || patternLength < -1 || (dest == nullptr && destCapacity > 0)) {
636 if (patternLength == -1) {
637 patternLength = u_strlen(pattern);
640 for (int i = 0; i < patternLength; ++i) {