Home | History | Annotate | Download | only in i18n

Lines Matching refs:pattern

18 *                          Removed pattern parser.
60 const UChar *pattern,
73 actLen = u_vformatMessage(locale,pattern,patternLength,result,resultLength,ap,status);
82 const UChar *pattern,
91 UMessageFormat *fmt = umsg_open(pattern,patternLength,locale,NULL,status);
99 const UChar *pattern,
113 actLen = u_vformatMessageWithError(locale,pattern,patternLength,result,resultLength,parseError,ap,status);
122 const UChar *pattern,
132 UMessageFormat *fmt = umsg_open(pattern,patternLength,locale,parseError,status);
145 const UChar *pattern,
158 u_vparseMessage(locale,pattern,patternLength,source,sourceLength,ap,status);
165 const UChar *pattern,
173 UMessageFormat *fmt = umsg_open(pattern,patternLength,locale,NULL,status);
181 const UChar *pattern,
196 u_vparseMessageWithError(locale,pattern,patternLength,source,sourceLength,ap,error,status);
202 const UChar *pattern,
211 UMessageFormat *fmt = umsg_open(pattern,patternLength,locale,error,status);
224 umsg_open( const UChar *pattern,
235 if(pattern==NULL||patternLength<-1){
246 int32_t len = (patternLength == -1 ? u_strlen(pattern) : patternLength);
247 UnicodeString patString(patternLength == -1, pattern, len);
312 const UChar* pattern,
322 if(fmt==NULL||pattern==NULL||patternLength<-1){
331 patternLength=u_strlen(pattern);
334 ((MessageFormat*)fmt)->applyPattern(UnicodeString(pattern,patternLength),*parseError,*status);
620 int32_t umsg_autoQuoteApostrophe(const UChar* pattern,
634 if (pattern == NULL || patternLength < -1 || (dest == NULL && destCapacity > 0)) {
641 patternLength = u_strlen(pattern);
645 UChar c = pattern[i];