Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DDenseMapInfo.h270 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 DImmutableSet.h672 bool atEnd() const { return stack.empty(); }
789 while (!InternalItr.atEnd() &&
806 while (!InternalItr.atEnd() &&
/freebsd/contrib/llvm-project/libcxx/src/filesystem/
H A Dpath.cpp286 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 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()
76 assert(!It.atEnd() && "pred_iterator out of range!");
82 assert(!It.atEnd() && "pred_iterator out of range!");
H A DInstIterator.h107 inline bool atEnd() const { return BB == BBs->end(); } in atEnd() function
H A DValue.h187 bool atEnd() const { return *this == user_iterator_impl(); } in atEnd() function
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfReader.h438 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 DMachineRegisterInfo.cpp412 assert((I.atEnd() || std::next(I) == def_instr_end()) && in getVRegDef()
414 return !I.atEnd() ? &*I : nullptr; in getVRegDef()
H A DMachineTraceMetrics.cpp658 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 DMachineRegisterInfo.h1092 bool atEnd() const { return Op == nullptr; } in atEnd() function
1200 bool atEnd() const { return Op == nullptr; } in atEnd() function
H A DSelectionDAGNodes.h801 bool atEnd() const { return Op == nullptr; }
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfReader.cpp830 while (atEnd()) in readNextRecord()
988 if (atEnd()) in getRecords()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclObjC.h1104 void setAtEndRange(SourceRange atEnd) { AtEnd = atEnd; } in setAtEndRange() argument
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseObjc.cpp2293 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 DParser.h1804 DeclGroupPtrTy ParseObjCAtEndDeclaration(SourceRange atEnd);
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp1547 auto atEnd = [](const CurrentAndEndIt &Pair) { in hoistLockstepIdenticalDbgVariableRecords() local
1572 while (none_of(Itrs, atEnd)) { in hoistLockstepIdenticalDbgVariableRecords()