Lines Matching refs:pattern
18 * Removed pattern parser.
39 const UChar *pattern,
52 actLen = u_vformatMessage(locale,pattern,patternLength,result,resultLength,ap,status);
61 const UChar *pattern,
70 UMessageFormat *fmt = umsg_open(pattern,patternLength,locale,NULL,status);
78 const UChar *pattern,
92 actLen = u_vformatMessageWithError(locale,pattern,patternLength,result,resultLength,parseError,ap,status);
101 const UChar *pattern,
111 UMessageFormat *fmt = umsg_open(pattern,patternLength,locale,parseError,status);
124 const UChar *pattern,
137 u_vparseMessage(locale,pattern,patternLength,source,sourceLength,ap,status);
144 const UChar *pattern,
152 UMessageFormat *fmt = umsg_open(pattern,patternLength,locale,NULL,status);
160 const UChar *pattern,
175 u_vparseMessageWithError(locale,pattern,patternLength,source,sourceLength,ap,error,status);
181 const UChar *pattern,
190 UMessageFormat *fmt = umsg_open(pattern,patternLength,locale,error,status);
203 umsg_open( const UChar *pattern,
214 if(pattern==NULL||patternLength<-1){
228 int32_t len = (patternLength == -1 ? u_strlen(pattern) : patternLength);
230 UnicodeString patString((patternLength == -1 ? TRUE:FALSE), pattern,len);
293 const UChar* pattern,
303 if(fmt==NULL||pattern==NULL||patternLength<-1){
312 patternLength=u_strlen(pattern);
315 ((MessageFormat*)fmt)->applyPattern(UnicodeString(pattern,patternLength),*parseError,*status);
616 int32_t umsg_autoQuoteApostrophe(const UChar* pattern,
630 if (pattern == NULL || patternLength < -1 || (dest == NULL && destCapacity > 0)) {
636 patternLength = u_strlen(pattern);
640 UChar c = pattern[i];