Home
last modified time | relevance | path

Searched refs:atEnd (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DDenseMapInfo.h271 std::integral_constant<bool, I + 1 == sizeof...(Ts)> atEnd;
274 getHashValueImpl<I + 1>(values, atEnd));
283 std::integral_constant<bool, 0 == sizeof...(Ts)> atEnd;
284 return getHashValueImpl<0>(values, atEnd);
290 std::integral_constant<bool, I + 1 == sizeof...(Ts)> atEnd;
292 isEqualImpl<I + 1>(lhs, rhs, atEnd);
301 std::integral_constant<bool, 0 == sizeof...(Ts)> atEnd;
302 return isEqualImpl<0>(lhs, rhs, atEnd);
H A DImmutableSet.h676 bool atEnd() const { return stack.empty(); }
793 while (!InternalItr.atEnd() &&
810 while (!InternalItr.atEnd() &&
/freebsd/contrib/llvm-project/libcxx/src/filesystem/
H A Dpath.cpp289 if (ElemCount == 0 && (PP.atEnd() || *PP == PATHSTR(""))) in lexically_relative()
343 if (LHS->atEnd() && !RHS->atEnd()) in CompareEndState()
345 else if (!LHS->atEnd() && RHS->atEnd()) in CompareEndState()
H A Dpath_parser.h202 bool atEnd() const noexcept { return State_ == PS_AtEnd; } in atEnd() function
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DCFG.h56 while (!It.atEnd()) { in advancePastNonTerminators()
77 assert(!It.atEnd() && "pred_iterator out of range!");
83 assert(!It.atEnd() && "pred_iterator out of range!");
H A DValue.h188 bool atEnd() const { return *this == user_iterator_impl(); } in atEnd() function
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h473 bool atEnd() const { return Data == DataEnd; } in atEnd() function
491 assert(atEnd()); in getNextHeaderPos()
578 virtual bool atEnd() const = 0;
627 bool atEnd() const override { in atEnd() function
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfReader.cpp863 while (atEnd()) in readNextRecord()
1021 if (atEnd()) in getRecords()
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseObjc.cpp2016 Parser::ParseObjCAtEndDeclaration(SourceRange atEnd) { in ParseObjCAtEndDeclaration() argument
2021 CurParsedObjCImpl->finish(atEnd); in ParseObjCAtEndDeclaration()
2024 Diag(atEnd.getBegin(), diag::err_expected_objc_container); in ParseObjCAtEndDeclaration()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclObjC.h1102 void setAtEndRange(SourceRange atEnd) { AtEnd = atEnd; } in setAtEndRange() argument
/freebsd/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h5651 DeclGroupPtrTy ParseObjCAtEndDeclaration(SourceRange atEnd);
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp1583 auto atEnd = [](const CurrentAndEndIt &Pair) { in hoistLockstepIdenticalDbgVariableRecords() local
1608 while (none_of(Itrs, atEnd)) { in hoistLockstepIdenticalDbgVariableRecords()