Lines Matching defs:fData
19 // matched the token indicated by fData[0]
25 // a state which serves as a placeholder for the states indicated in fData. When we
26 // transition to this state, we instead transition to all of the fData states.
28 // contains a list of true/false values in fData. fData[c] tells us whether we accept the
44 , fData(std::move(states)) {}
51 fData.push_back(b);
57 fData.push_back(token);
70 if ((size_t) c < fData.size()) {
71 value = fData[c];
86 return "Accept(" + std::to_string(fData[0]) + ")";
110 for (int v : fData) {
121 for (int v : fData) {
146 std::vector<int> fData;