Home
last modified time | relevance | path

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

/llvm-project/flang/lib/Parser/
H A Dstmt-parser.h35 constexpr auto checkEndOfKnownStmt{recovery(atEndOfStmt, SkipTo<'\n'>{})};
73 SkipTo<'\n'>{} >> construct<ErrorRecovery>()};
101 !progUnitEndStmt >> ("END"_tok >> SkipTo<'\n'>{} || ok)};
107 ("END"_tok >> SkipTo<'\n'>{} || consumedAllInput)) >>
H A Dtoken-parsers.h575 template <char goal> struct SkipTo { in Parse() argument
577 constexpr SkipTo() {} in Parse()
578 constexpr SkipTo(const SkipTo &) {} in Parse()
571 template <char goal> struct SkipTo { global() struct
573 SkipToSkipTo SkipTo() argument
574 SkipToSkipTo SkipTo() argument
H A DFortran-parsers.cpp518 "::" >> nonemptyList(procDecl), SkipTo<'\n'>{})))
567 !"END"_tok >> SkipTo<'\n'>{} >> construct<ErrorRecovery>())))
583 "::" >> listOfNames, SkipTo<'\n'>{}))) ||
1322 SkipTo<'\n'>{}))
/llvm-project/llvm/include/llvm/Bitstream/
H A DBitstreamReader.h499 size_t SkipTo = GetCurrentBitNo() + NumFourBytes * 4 * 8; in SkipBlock() local
503 if (!canSkipToPos(SkipTo / 8)) in SkipBlock()
505 "can't skip to bit %zu from %" PRIu64, SkipTo, in SkipBlock()
508 if (Error Res = JumpToBit(SkipTo)) in SkipBlock()