Searched refs:atEnd (Results 1 – 15 of 15) sorted by relevance
| /openbsd/src/gnu/llvm/llvm/include/llvm/ADT/ |
| D | DenseMapInfo.h | 258 std::integral_constant<bool, I + 1 == sizeof...(Ts)> atEnd; 261 getHashValueImpl<I + 1>(values, atEnd)); 270 std::integral_constant<bool, 0 == sizeof...(Ts)> atEnd; 271 return getHashValueImpl<0>(values, atEnd); 277 std::integral_constant<bool, I + 1 == sizeof...(Ts)> atEnd; 279 isEqualImpl<I + 1>(lhs, rhs, atEnd); 288 std::integral_constant<bool, 0 == sizeof...(Ts)> atEnd; 289 return isEqualImpl<0>(lhs, rhs, atEnd);
|
| D | ImmutableSet.h | 672 bool atEnd() const { return stack.empty(); } 789 while (!InternalItr.atEnd() && 806 while (!InternalItr.atEnd() &&
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/IR/ |
| 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!");
|
| D | InstIterator.h | 107 inline bool atEnd() const { return BB == BBs->end(); } in atEnd() function
|
| D | Value.h | 187 bool atEnd() const { return *this == user_iterator_impl(); } in atEnd() function
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/ProfileData/ |
| D | InstrProfReader.h | 392 bool atEnd() const { return Data == DataEnd; } in atEnd() function 409 assert(atEnd()); in getNextHeaderPos() 493 virtual bool atEnd() const = 0; 538 bool atEnd() const override { in atEnd() function
|
| /openbsd/src/gnu/llvm/llvm/lib/CodeGen/ |
| D | MachineRegisterInfo.cpp | 401 assert((I.atEnd() || std::next(I) == def_instr_end()) && in getVRegDef() 403 return !I.atEnd() ? &*I : nullptr; in getVRegDef()
|
| D | MachineTraceMetrics.cpp | 639 assert(!DefI.atEnd() && "Register has no defs"); in DataDep() 642 assert((++DefI).atEnd() && "Register has multiple defs"); in DataDep()
|
| /openbsd/src/gnu/llvm/libcxx/src/filesystem/ |
| D | operations.cpp | 246 bool atEnd() const noexcept { in atEnd() function 1885 if (ElemCount == 0 && (PP.atEnd() || *PP == PATHSTR(""))) in lexically_relative() 1941 if (LHS->atEnd() && !RHS->atEnd()) in CompareEndState() 1943 else if (!LHS->atEnd() && RHS->atEnd()) in CompareEndState()
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/CodeGen/ |
| D | MachineRegisterInfo.h | 1084 bool atEnd() const { return Op == nullptr; } in atEnd() function 1192 bool atEnd() const { return Op == nullptr; } in atEnd() function
|
| D | SelectionDAGNodes.h | 769 bool atEnd() const { return Op == nullptr; }
|
| /openbsd/src/gnu/llvm/llvm/lib/ProfileData/ |
| D | InstrProfReader.cpp | 635 while (atEnd()) in readNextRecord() 768 if (atEnd()) in getRecords()
|
| /openbsd/src/gnu/llvm/clang/include/clang/AST/ |
| D | DeclObjC.h | 1098 void setAtEndRange(SourceRange atEnd) { AtEnd = atEnd; } in setAtEndRange() argument
|
| /openbsd/src/gnu/llvm/clang/lib/Parse/ |
| D | ParseObjc.cpp | 2285 Parser::ParseObjCAtEndDeclaration(SourceRange atEnd) { in ParseObjCAtEndDeclaration() argument 2290 CurParsedObjCImpl->finish(atEnd); in ParseObjCAtEndDeclaration() 2293 Diag(atEnd.getBegin(), diag::err_expected_objc_container); in ParseObjCAtEndDeclaration()
|
| /openbsd/src/gnu/llvm/clang/include/clang/Parse/ |
| D | Parser.h | 1733 DeclGroupPtrTy ParseObjCAtEndDeclaration(SourceRange atEnd);
|