Home | History | Annotate | Download | only in base

Lines Matching defs:precomputed

129     reallyTestEmpty(matcher.precomputed());
183 reallyTestNoMatches(matcher.precomputed(), s);
184 reallyTestAllMatches(matcher.negate().precomputed(), s);
185 reallyTestAllMatches(matcher.precomputed().negate(), s);
210 reallyTestAllMatches(matcher.precomputed(), s);
211 reallyTestNoMatches(matcher.negate().precomputed(), s);
212 reallyTestNoMatches(matcher.precomputed().negate(), s);
285 reallyTestOneCharMatch(matcher.precomputed(), s);
286 reallyTestOneCharNoMatch(matcher.negate().precomputed(), s);
287 reallyTestOneCharNoMatch(matcher.precomputed().negate(), s);
293 reallyTestOneCharNoMatch(matcher.precomputed(), s);
294 reallyTestOneCharMatch(matcher.negate().precomputed(), s);
295 reallyTestOneCharMatch(matcher.precomputed().negate(), s);
301 reallyTestMatchThenNoMatch(matcher.precomputed(), s);
302 reallyTestNoMatchThenMatch(matcher.negate().precomputed(), s);
303 reallyTestNoMatchThenMatch(matcher.precomputed().negate(), s);
309 reallyTestNoMatchThenMatch(matcher.precomputed(), s);
310 reallyTestMatchThenNoMatch(matcher.negate().precomputed(), s);
311 reallyTestMatchThenNoMatch(matcher.precomputed().negate(), s);
594 // build a precomputed version.
596 assertSame(m1, m1.precomputed());
599 assertSame(m2, m2.precomputed());
602 assertSame(m3, m3.precomputed());
604 assertSame(CharMatcher.NONE, CharMatcher.NONE.precomputed());
605 assertSame(CharMatcher.ANY, CharMatcher.ANY.precomputed());