/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | DenseMapInfo.h | 270 std::integral_constant<bool, I + 1 == sizeof...(Ts)> atEnd; 273 getHashValueImpl<I + 1>(values, atEnd)); 282 std::integral_constant<bool, 0 == sizeof...(Ts)> atEnd; 283 return getHashValueImpl<0>(values, atEnd); 289 std::integral_constant<bool, I + 1 == sizeof...(Ts)> atEnd; 291 isEqualImpl<I + 1>(lhs, rhs, atEnd); 300 std::integral_constant<bool, 0 == sizeof...(Ts)> atEnd; 301 return isEqualImpl<0>(lhs, rhs, atEnd);
|
H A D | ImmutableSet.h | 672 bool atEnd() const { return stack.empty(); } 789 while (!InternalItr.atEnd() && 806 while (!InternalItr.atEnd() &&
|
/freebsd/contrib/llvm-project/libcxx/src/filesystem/ |
H A D | path.cpp | 286 if (ElemCount == 0 && (PP.atEnd() || *PP == PATHSTR(""))) in lexically_relative() 340 if (LHS->atEnd() && !RHS->atEnd()) in CompareEndState() 342 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() 76 assert(!It.atEnd() && "pred_iterator out of range!"); 82 assert(!It.atEnd() && "pred_iterator out of range!");
|
H A D | InstIterator.h | 107 inline bool atEnd() const { return BB == BBs->end(); } in atEnd() function
|
H A D | Value.h | 187 bool atEnd() const { return *this == user_iterator_impl(); } in atEnd() function
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/ |
H A D | InstrProfReader.h | 438 bool atEnd() const { return Data == DataEnd; } in atEnd() function 456 assert(atEnd()); in getNextHeaderPos() 542 virtual bool atEnd() const = 0; 590 bool atEnd() const override { in atEnd() function
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | MachineRegisterInfo.cpp | 412 assert((I.atEnd() || std::next(I) == def_instr_end()) && in getVRegDef() 414 return !I.atEnd() ? &*I : nullptr; in getVRegDef()
|
H A D | MachineTraceMetrics.cpp | 658 assert(!DefI.atEnd() && "Register has no defs"); in DataDep() 661 assert((++DefI).atEnd() && "Register has multiple defs"); in DataDep()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | MachineRegisterInfo.h | 1092 bool atEnd() const { return Op == nullptr; } in atEnd() function 1200 bool atEnd() const { return Op == nullptr; } in atEnd() function
|
H A D | SelectionDAGNodes.h | 801 bool atEnd() const { return Op == nullptr; }
|
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/ |
H A D | InstrProfReader.cpp | 830 while (atEnd()) in readNextRecord() 988 if (atEnd()) in getRecords()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | DeclObjC.h | 1104 void setAtEndRange(SourceRange atEnd) { AtEnd = atEnd; } in setAtEndRange() argument
|
/freebsd/contrib/llvm-project/clang/lib/Parse/ |
H A D | ParseObjc.cpp | 2293 Parser::ParseObjCAtEndDeclaration(SourceRange atEnd) { in ParseObjCAtEndDeclaration() argument 2298 CurParsedObjCImpl->finish(atEnd); in ParseObjCAtEndDeclaration() 2301 Diag(atEnd.getBegin(), diag::err_expected_objc_container); in ParseObjCAtEndDeclaration()
|
/freebsd/contrib/llvm-project/clang/include/clang/Parse/ |
H A D | Parser.h | 1804 DeclGroupPtrTy ParseObjCAtEndDeclaration(SourceRange atEnd);
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | SimplifyCFG.cpp | 1547 auto atEnd = [](const CurrentAndEndIt &Pair) { in hoistLockstepIdenticalDbgVariableRecords() local 1572 while (none_of(Itrs, atEnd)) { in hoistLockstepIdenticalDbgVariableRecords()
|