Searched refs:atEnd (Results 1 – 12 of 12) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | DenseMapInfo.h | 271 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 D | ImmutableSet.h | 676 bool atEnd() const { return stack.empty(); } 793 while (!InternalItr.atEnd() && 810 while (!InternalItr.atEnd() &&
|
| /freebsd/contrib/llvm-project/libcxx/src/filesystem/ |
| H A D | path.cpp | 289 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 D | path_parser.h | 202 bool atEnd() const noexcept { return State_ == PS_AtEnd; } in atEnd() function
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | CFG.h | 56 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 D | Value.h | 188 bool atEnd() const { return *this == user_iterator_impl(); } in atEnd() function
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/ |
| H A D | InstrProfReader.h | 473 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 D | InstrProfReader.cpp | 863 while (atEnd()) in readNextRecord() 1021 if (atEnd()) in getRecords()
|
| /freebsd/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseObjc.cpp | 2016 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 D | DeclObjC.h | 1102 void setAtEndRange(SourceRange atEnd) { AtEnd = atEnd; } in setAtEndRange() argument
|
| /freebsd/contrib/llvm-project/clang/include/clang/Parse/ |
| H A D | Parser.h | 5651 DeclGroupPtrTy ParseObjCAtEndDeclaration(SourceRange atEnd);
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | SimplifyCFG.cpp | 1583 auto atEnd = [](const CurrentAndEndIt &Pair) { in hoistLockstepIdenticalDbgVariableRecords() local 1608 while (none_of(Itrs, atEnd)) { in hoistLockstepIdenticalDbgVariableRecords()
|