Home
last modified time | relevance | path

Searched refs:IsAtEnd (Results 1 – 11 of 11) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Support/
H A DYAMLParser.cpp2263 IsAtEnd = true; in increment()
2270 IsAtEnd = true; in increment()
2283 IsAtEnd = true; in increment()
2290 IsAtEnd = true; in increment()
2304 IsAtEnd = true; in increment()
2311 IsAtEnd = true; in increment()
2319 IsAtEnd = true; in increment()
2338 IsAtEnd = true; in increment()
2346 IsAtEnd = true; in increment()
2361 IsAtEnd = true; in increment()
[all …]
/llvm-project-15.0.7/flang/lib/Parser/
H A Dprescan.cpp74 while (!IsAtEnd()) { in Prescan()
244 CHECK(!IsAtEnd() && !inPreprocessorDirective_); in TokenizePreprocessorDirective()
435 at_[1] == '\n' && !IsAtEnd()) { in SkipCComments()
879 if (IsAtEnd()) { in SkipCommentLine()
918 if (IsAtEnd()) { in FixedFormContinuationLine()
1070 delimiterNesting_ > 0 && !IsAtEnd() && in IsImplicitContinuation()
H A Dprescan.h67 bool IsAtEnd() const { return nextLine_ >= limit_; } in IsAtEnd() function
H A Dparsing.cpp240 consumedWholeFile_ = parseState.IsAtEnd(); in Parse()
H A Dtoken-parsers.h548 if (state.IsAtEnd()) { in Parse()
H A Dpreprocessor.cpp678 while (!prescanner.IsAtEnd()) { in SkipDisabledConditionalCode()
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DYAMLParser.h399 assert((C.IsAtBeginning || C.IsAtEnd) && "Cannot skip mid parse!"); in skip()
447 bool IsAtEnd = false; variable
504 bool IsAtEnd = false; variable
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DSemaInternal.h257 iterator(NamespaceSpecifierSet &Set, bool IsAtEnd) in iterator() argument
260 Inner(!IsAtEnd ? Outer->second.begin() : OuterBack->second.end()) { in iterator()
/llvm-project-15.0.7/clang/lib/Lex/
H A DTokenLexer.cpp752 auto IsAtEnd = [&TokenStream, &CurIdx] { in pasteTokens() local
761 assert(!IsAtEnd() && "No token on the RHS of a paste operator!"); in pasteTokens()
889 } while (!IsAtEnd() && TokenStream[CurIdx].is(tok::hashhash)); in pasteTokens()
/llvm-project-15.0.7/flang/include/flang/Parser/
H A Dparse-state.h166 bool IsAtEnd() const { return p_ >= limit_; } in IsAtEnd() function
/llvm-project-15.0.7/flang/lib/Semantics/
H A Ddata-to-inits.cpp44 bool IsAtEnd() const { return at_ == end_; } in IsAtEnd() function in Fortran::semantics::ValueListIterator
104 bool HasSurplusValues() const { return !values_.IsAtEnd(); } in HasSurplusValues()
341 } else if (values_.IsAtEnd()) { in InitElement()