Lines Matching refs:Alpha
18 struct Alpha { struct
110 const auto match = Alpha::Match(gTests[i].fInput); in test_Alpha()
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()