Home | History | Annotate | Download | only in text

Lines Matching defs:masks

49     // are used only by masks() and getIndexValue() which are called
267 * Return true if this rule masks another rule. If r1 masks r2 then
268 * r1 matches any input string that r2 matches. If r1 masks r2 and r2 masks
269 * r1 then r1 == r2. Examples: "a>x" masks "ab>y". "a>x" masks "a[b]>y".
270 * "[c]a>x" masks "[dc]a>y".
272 public boolean masks(TransliterationRule r2) {
273 /* Rule r1 masks rule r2 if the string formed of the
292 * means the row masks the column, N means it doesn't.
300 * Post context: {a}b masks ab, but not vice versa, since {a}b
308 * "{Lu}]a>x" masks "A]a>y". This can be added later. TODO