Lines Matching refs:match
25 REPORTER_ASSERT(r, !pattern.match(&record, 0));
29 // Build up a save-clip-restore block. The pattern will match only it's complete.
31 REPORTER_ASSERT(r, !pattern.match(&record, 0));
34 REPORTER_ASSERT(r, !pattern.match(&record, 0));
37 REPORTER_ASSERT(r, pattern.match(&record, 0));
56 // We should match only at 0 and 3. Going over the length should fail gracefully.
59 REPORTER_ASSERT(r, pattern.match(&record, i) == i + 3);
61 REPORTER_ASSERT(r, !pattern.match(&record, i));
77 REPORTER_ASSERT(r, !pattern.match(&record, 0));
90 REPORTER_ASSERT(r, pattern.match(&record, index));
97 REPORTER_ASSERT(r, pattern.match(&record, index));
115 REPORTER_ASSERT(r, pattern.match(&record, 0) == record.count());
126 REPORTER_ASSERT(r, !pattern.match(&record, start));
135 REPORTER_ASSERT(r, pattern.match(&record, start) == record.count());
151 REPORTER_ASSERT(r, !pattern.match(&record, 0));