Home | History | Annotate | Download | only in i18n

Lines Matching refs:ch

150         UChar ch=pattern.charAt(i);
152 if ( !inRange(ch, type) ) {
158 token += ch;
172 token += ch;
199 token += ch;
224 token += ch;
236 token+=ch;
337 PluralFormat::inRange(UChar ch, fmtToken& type) {
338 if ((ch>=CAP_A) && (ch<=CAP_Z)) {
342 if ((ch>=LOW_A) && (ch<=LOW_Z)) {
346 switch (ch) {