Home
last modified time | relevance | path

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

/llvm-project-15.0.7/flang/lib/Parser/
H A Dstmt-parser.h69 SkipTo<'\n'>{} >> construct<ErrorRecovery>()};
91 constexpr auto bareEnd{noNameEnd / recovery(atEndOfStmt, SkipTo<'\n'>{})};
94 ("END"_tok >> SkipTo<'\n'>{} || ok) >> missingOptionalName};
98 ("END"_tok >> SkipTo<'\n'>{} || consumedAllInput)) >>
H A Dtoken-parsers.h570 template <char goal> struct SkipTo { struct
572 constexpr SkipTo() {} in SkipTo() argument
573 constexpr SkipTo(const SkipTo &) {} in SkipTo() argument
H A DFortran-parsers.cpp471 "::" >> nonemptyList(procDecl), SkipTo<'\n'>{})))
520 !"END"_tok >> SkipTo<'\n'>{} >> construct<ErrorRecovery>())))
533 "::" >> listOfNames, SkipTo<'\n'>{}))) ||
/llvm-project-15.0.7/llvm/include/llvm/Bitstream/
H A DBitstreamReader.h500 size_t SkipTo = GetCurrentBitNo() + NumFourBytes * 4 * 8; in SkipBlock() local
504 if (!canSkipToPos(SkipTo / 8)) in SkipBlock()
506 "can't skip to bit %zu from %" PRIu64, SkipTo, in SkipBlock()
509 if (Error Res = JumpToBit(SkipTo)) in SkipBlock()