Lines Matching refs:Choice
189 REPORTER_ASSERT(r, !(Choice<Digit,Alpha>::Match(""))); in test_Choice()
190 REPORTER_ASSERT(r, !(Choice<Digit,Alpha>::Match("\t"))); in test_Choice()
191 REPORTER_ASSERT(r, !(Choice<Digit,Alpha>::Match(" "))); in test_Choice()
192 REPORTER_ASSERT(r, (Choice<Digit,Alpha>::Match("a"))); in test_Choice()
193 REPORTER_ASSERT(r, (Choice<Digit,Alpha>::Match("3"))); in test_Choice()
194 REPORTER_ASSERT(r, (Choice<Digit,Alpha>::Match("a "))); in test_Choice()
195 REPORTER_ASSERT(r, (Choice<Digit,Alpha>::Match("3 "))); in test_Choice()
196 REPORTER_ASSERT(r, !(Choice<Digit,Alpha>::Match(" a "))); in test_Choice()
197 REPORTER_ASSERT(r, !(Choice<Digit,Alpha>::Match(" 3 "))); in test_Choice()
200 const auto m = Choice<Alpha, Digit>::Match("x"); in test_Choice()
208 const auto m = Choice<Alpha, Digit>::Match("7"); in test_Choice()
272 Choice<LIT<'F'>, LIT<'f'>>, in test_Complex()
275 Choice<LIT<'B'>, LIT<'b'>>, in test_Complex()
277 Choice<LIT<'B'>, LIT<'b'>>, in test_Complex()