Home
last modified time | relevance | path

Searched refs:getGoToState (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/clang-tools-extra/pseudo/unittests/
H A DLRTableTest.cpp61 EXPECT_THAT(T.getGoToState(1, Term), ValueIs(3)); in TEST()
/llvm-project-15.0.7/clang-tools-extra/pseudo/lib/
H A DGLR.cpp189 : *Lang.Table.getGoToState(OldState, Option->Symbol); in glrRecover()
505 auto NextState = Lang.Table.getGoToState(Base->State, F.Symbol); in pushNext()
583 auto NextState = Lang.Table.getGoToState(Base->State, Rule.Target); in popAndPushTrivial()
648 auto AcceptState = Lang.Table.getGoToState(StartState, StartSymbol); in glrParse()
/llvm-project-15.0.7/clang-tools-extra/pseudo/lib/grammar/
H A DLRTable.cpp58 if (auto GS = getGoToState(S, NontermID)) { in dumpForTests()
/llvm-project-15.0.7/clang-tools-extra/pseudo/include/clang-pseudo/grammar/
H A DLRTable.h78 llvm::Optional<StateID> getGoToState(StateID State, in getGoToState() function