Lines Matching refs:fInput
44 const char* fInput; in test_EOS() member
54 const auto match = EOS::Match(gTests[i].fInput); in test_EOS()
56 REPORTER_ASSERT(r, match.fNext == (match ? gTests[i].fInput : nullptr)); in test_EOS()
62 const char* fInput; in test_LIT() member
74 const auto match = LIT<'X'>::Match(gTests[i].fInput); in test_LIT()
76 REPORTER_ASSERT(r, match.fNext == (match ? gTests[i].fInput + 1 : nullptr)); in test_LIT()
88 const char* fInput; in test_Alpha() member
109 const auto match = Alpha::Match(gTests[i].fInput); in test_Alpha()
111 REPORTER_ASSERT(r, match.fNext == (match ? gTests[i].fInput + 1 : nullptr)); in test_Alpha()
120 const char* fInput; in test_Digit() member
135 const auto match = Digit::Match(gTests[i].fInput); in test_Digit()
137 REPORTER_ASSERT(r, match.fNext == (match ? gTests[i].fInput + 1 : nullptr)); in test_Digit()
146 const char* fInput; in test_Opt() member
157 const auto m = Opt<LIT<'f', 'o', 'o'>>::Match(gTests[i].fInput); in test_Opt()
217 const char* fInput; in test_AnySome() member
228 const auto matchAny = Any<LIT<'f', 'o', 'o'>>::Match(gTests[i].fInput); in test_AnySome()
232 const auto matchSome = Some<LIT<'f', 'o', 'o'>>::Match(gTests[i].fInput); in test_AnySome()