Lines Matching refs:fInput
45 const char* fInput; in test_EOS() member
55 const auto match = EOS::Match(gTests[i].fInput); in test_EOS()
57 REPORTER_ASSERT(r, match.fNext == (match ? gTests[i].fInput : nullptr)); in test_EOS()
63 const char* fInput; in test_LIT() member
75 const auto match = LIT<'X'>::Match(gTests[i].fInput); in test_LIT()
77 REPORTER_ASSERT(r, match.fNext == (match ? gTests[i].fInput + 1 : nullptr)); in test_LIT()
89 const char* fInput; in test_Alpha() member
110 const auto match = Alpha::Match(gTests[i].fInput); in test_Alpha()
112 REPORTER_ASSERT(r, match.fNext == (match ? gTests[i].fInput + 1 : nullptr)); in test_Alpha()
121 const char* fInput; in test_Digit() member
136 const auto match = Digit::Match(gTests[i].fInput); in test_Digit()
138 REPORTER_ASSERT(r, match.fNext == (match ? gTests[i].fInput + 1 : nullptr)); in test_Digit()
147 const char* fInput; in test_Opt() member
158 const auto m = Opt<LIT<'f', 'o', 'o'>>::Match(gTests[i].fInput); in test_Opt()
218 const char* fInput; in test_AnySome() member
229 const auto matchAny = Any<LIT<'f', 'o', 'o'>>::Match(gTests[i].fInput); in test_AnySome()
233 const auto matchSome = Some<LIT<'f', 'o', 'o'>>::Match(gTests[i].fInput); in test_AnySome()