Home
last modified time | relevance | path

Searched refs:AtEnd (Results 1 – 10 of 10) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDie.h411 bool AtEnd; variable
415 : Die(It.Die), AtEnd(!It.Die.getPreviousSibling()) { in reverse_iterator()
416 if (!AtEnd) in reverse_iterator()
421 return llvm::DWARFDie::iterator(AtEnd ? Die : Die.getSibling()); in base()
425 assert(!AtEnd && "Incrementing rend");
430 AtEnd = true;
435 if (AtEnd) {
436 AtEnd = false;
453 return Die == RHS.Die && AtEnd == RHS.AtEnd; in equals()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSparseBitVector.h321 bool AtEnd;
339 if (AtEnd) in AdvanceToFirstNonZero()
342 AtEnd = true; in AdvanceToFirstNonZero()
356 if (AtEnd) in AdvanceToNextNonZero()
374 AtEnd = true; in AdvanceToNextNonZero()
403 AtEnd = end; in BitVector()
429 if (AtEnd && RHS.AtEnd)
433 return AtEnd == RHS.AtEnd && RHS.BitNumber == BitNumber;
/freebsd-14.2/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-param-util.h861 assert(!AtEnd()); in GTEST_DISABLE_MSC_WARNINGS_POP_()
886 if (AtEnd() && typed_other->AtEnd()) return true; in GTEST_DISABLE_MSC_WARNINGS_POP_()
914 if (!AtEnd()) in GTEST_DISABLE_MSC_WARNINGS_POP_()
917 bool AtEnd() const { in GTEST_DISABLE_MSC_WARNINGS_POP_()
/freebsd-14.2/contrib/llvm-project/clang/lib/Parse/
H A DParseObjc.cpp647 SourceRange AtEnd; in ParseObjCInterfaceDeclList() local
733 AtEnd.setBegin(AtLoc); in ParseObjCInterfaceDeclList()
734 AtEnd.setEnd(Tok.getLocation()); in ParseObjCInterfaceDeclList()
840 AtEnd.setBegin(Tok.getLocation()); in ParseObjCInterfaceDeclList()
841 AtEnd.setEnd(Tok.getLocation()); in ParseObjCInterfaceDeclList()
846 Actions.ActOnAtEnd(getCurScope(), AtEnd, allMethods, allTUVariables); in ParseObjCInterfaceDeclList()
2324 void Parser::ObjCImplParsingDataRAII::finish(SourceRange AtEnd) { in finish() argument
2326 P.Actions.DefaultSynthesizeProperties(P.getCurScope(), Dcl, AtEnd.getBegin()); in finish()
2331 P.Actions.ActOnAtEnd(P.getCurScope(), AtEnd); in finish()
/freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/Core/
H A DReplacement.cpp263 Replacement AtEnd(R.getFilePath(), R.getOffset() + R.getLength(), 0, ""); in add() local
268 auto I = Replaces.lower_bound(AtEnd); in add()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaObjCProperty.cpp1888 SourceLocation AtEnd) { in DefaultSynthesizeProperties() argument
1939 Diag(AtEnd, diag::note_add_synthesize_directive) in DefaultSynthesizeProperties()
1940 << FixItHint::CreateInsertion(AtEnd, FixIt); in DefaultSynthesizeProperties()
1981 SourceLocation AtEnd) { in DefaultSynthesizeProperties() argument
1989 DefaultSynthesizeProperties(S, IC, IDecl, AtEnd); in DefaultSynthesizeProperties()
H A DSemaDeclObjC.cpp3980 Decl *Sema::ActOnAtEnd(Scope *S, SourceRange AtEnd, ArrayRef<Decl *> allMethods, in ActOnAtEnd() argument
3985 assert(AtEnd.isValid() && "Invalid location for '@end'"); in ActOnAtEnd()
4089 CDecl->setAtEndRange(AtEnd); in ActOnAtEnd()
4092 IC->setAtEndRange(AtEnd); in ActOnAtEnd()
4181 CatImplClass->setAtEndRange(AtEnd); in ActOnAtEnd()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DDeclObjC.h950 SourceRange AtEnd; variable
1099 SourceRange getAtEndRange() const { return AtEnd; } in getAtEndRange()
1101 void setAtEndRange(SourceRange atEnd) { AtEnd = atEnd; } in setAtEndRange()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h1742 void finish(SourceRange AtEnd);
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h4901 SourceLocation AtEnd);
4902 void DefaultSynthesizeProperties(Scope *S, Decl *D, SourceLocation AtEnd);
10672 Decl *ActOnAtEnd(Scope *S, SourceRange AtEnd,