| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/ |
| H A D | DWARFDie.h | 411 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-13.1/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | SparseBitVector.h | 320 bool AtEnd; 338 if (AtEnd) in AdvanceToFirstNonZero() 341 AtEnd = true; in AdvanceToFirstNonZero() 355 if (AtEnd) in AdvanceToNextNonZero() 373 AtEnd = true; in AdvanceToNextNonZero() 402 AtEnd = end; in BitVector() 428 if (AtEnd && RHS.AtEnd) 432 return AtEnd == RHS.AtEnd && RHS.BitNumber == BitNumber;
|
| /freebsd-13.1/contrib/googletest/googletest/include/gtest/internal/ |
| H A D | gtest-param-util-generated.h.pump | 151 assert(!AtEnd()); 177 // so we have to consult AtEnd(). 178 return (AtEnd() && typed_other->AtEnd()) || 197 if (!AtEnd()) 200 bool AtEnd() const {
|
| H A D | gtest-param-util-generated.h | 3631 return (AtEnd() && typed_other->AtEnd()) || in Equals() 3650 if (!AtEnd()) in ComputeCurrentValue() 3754 return (AtEnd() && typed_other->AtEnd()) || in Equals() 3777 if (!AtEnd()) in ComputeCurrentValue() 3895 return (AtEnd() && typed_other->AtEnd()) || in Equals() 4053 return (AtEnd() && typed_other->AtEnd()) || in Equals() 4230 return (AtEnd() && typed_other->AtEnd()) || in Equals() 4424 return (AtEnd() && typed_other->AtEnd()) || in Equals() 4637 return (AtEnd() && typed_other->AtEnd()) || in Equals() 4866 return (AtEnd() && typed_other->AtEnd()) || in Equals() [all …]
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseObjc.cpp | 599 SourceRange AtEnd; in ParseObjCInterfaceDeclList() local 680 AtEnd.setBegin(AtLoc); in ParseObjCInterfaceDeclList() 681 AtEnd.setEnd(Tok.getLocation()); in ParseObjCInterfaceDeclList() 793 AtEnd.setBegin(Tok.getLocation()); in ParseObjCInterfaceDeclList() 794 AtEnd.setEnd(Tok.getLocation()); in ParseObjCInterfaceDeclList() 799 Actions.ActOnAtEnd(getCurScope(), AtEnd, allMethods, allTUVariables); in ParseObjCInterfaceDeclList() 2258 void Parser::ObjCImplParsingDataRAII::finish(SourceRange AtEnd) { in finish() argument 2260 P.Actions.DefaultSynthesizeProperties(P.getCurScope(), Dcl, AtEnd.getBegin()); in finish() 2265 P.Actions.ActOnAtEnd(P.getCurScope(), AtEnd); in finish()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Tooling/Core/ |
| H A D | Replacement.cpp | 262 Replacement AtEnd(R.getFilePath(), R.getOffset() + R.getLength(), 0, ""); in add() local 267 auto I = Replaces.lower_bound(AtEnd); in add()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaObjCProperty.cpp | 1890 SourceLocation AtEnd) { in DefaultSynthesizeProperties() argument 1942 Diag(AtEnd, diag::note_add_synthesize_directive) in DefaultSynthesizeProperties() 1943 << FixItHint::CreateInsertion(AtEnd, FixIt); in DefaultSynthesizeProperties() 1984 SourceLocation AtEnd) { in DefaultSynthesizeProperties() argument 1992 DefaultSynthesizeProperties(S, IC, IDecl, AtEnd); in DefaultSynthesizeProperties()
|
| H A D | SemaDeclObjC.cpp | 3965 Decl *Sema::ActOnAtEnd(Scope *S, SourceRange AtEnd, ArrayRef<Decl *> allMethods, in ActOnAtEnd() argument 3970 assert(AtEnd.isValid() && "Invalid location for '@end'"); in ActOnAtEnd() 4074 CDecl->setAtEndRange(AtEnd); in ActOnAtEnd() 4077 IC->setAtEndRange(AtEnd); in ActOnAtEnd() 4166 CatImplClass->setAtEndRange(AtEnd); in ActOnAtEnd()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | DeclObjC.h | 951 SourceRange AtEnd; variable 1098 SourceRange getAtEndRange() const { return AtEnd; } in getAtEndRange() 1100 void setAtEndRange(SourceRange atEnd) { AtEnd = atEnd; } in setAtEndRange()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Parse/ |
| H A D | Parser.h | 1686 void finish(SourceRange AtEnd);
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Sema.h | 4391 SourceLocation AtEnd); 4392 void DefaultSynthesizeProperties(Scope *S, Decl *D, SourceLocation AtEnd); 9705 Decl *ActOnAtEnd(Scope *S, SourceRange AtEnd,
|