Home | History | Annotate | Download | only in i18n

Lines Matching defs:masks

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