Home | History | Annotate | Download | only in i18n

Lines Matching defs:masks

249  * Return true if this rule masks another rule.  If r1 masks r2 then
250 * r1 matches any input string that r2 matches. If r1 masks r2 and r2 masks
251 * r1 then r1 == r2. Examples: "a>x" masks "ab>y". "a>x" masks "a[b]>y".
252 * "[c]a>x" masks "[dc]a>y".
254 UBool TransliterationRule::masks(const TransliterationRule& r2) const {
255 /* Rule r1 masks rule r2 if the string formed of the
274 * means the row masks the column, N means it doesn't.
282 * Post context: {a}b masks ab, but not vice versa, since {a}b
290 * "{Lu}]a>x" masks "A]a>y". This can be added later. TODO