| /llvm-project-15.0.7/llvm/include/llvm/DebugInfo/DWARF/ |
| H A D | DWARFDie.h | 412 bool AtEnd; variable 416 : Die(It.Die), AtEnd(!It.Die.getPreviousSibling()) { in reverse_iterator() 417 if (!AtEnd) in reverse_iterator() 422 return llvm::DWARFDie::iterator(AtEnd ? Die : Die.getSibling()); in base() 426 assert(!AtEnd && "Incrementing rend"); 431 AtEnd = true; 436 if (AtEnd) { 437 AtEnd = false; 454 return Die == RHS.Die && AtEnd == RHS.AtEnd; in equals()
|
| /llvm-project-15.0.7/llvm/include/llvm/ADT/ |
| H A D | SparseBitVector.h | 321 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;
|
| /llvm-project-15.0.7/lldb/unittests/Utility/ |
| H A D | AnsiTerminalTest.cpp | 21 TEST(AnsiTerminal, AtEnd) { in TEST() argument
|
| /llvm-project-15.0.7/llvm/utils/unittest/googletest/include/gtest/internal/ |
| H A D | gtest-param-util.h | 794 assert(!AtEnd()); in Advance() 819 if (AtEnd() && typed_other->AtEnd()) return true; in Equals() 847 if (!AtEnd()) in ComputeCurrentValue() 850 bool AtEnd() const { in AtEnd() function
|
| /llvm-project-15.0.7/clang/lib/Parse/ |
| H A D | ParseObjc.cpp | 599 SourceRange AtEnd; in ParseObjCInterfaceDeclList() local 682 AtEnd.setBegin(AtLoc); in ParseObjCInterfaceDeclList() 683 AtEnd.setEnd(Tok.getLocation()); in ParseObjCInterfaceDeclList() 795 AtEnd.setBegin(Tok.getLocation()); in ParseObjCInterfaceDeclList() 796 AtEnd.setEnd(Tok.getLocation()); in ParseObjCInterfaceDeclList() 801 Actions.ActOnAtEnd(getCurScope(), AtEnd, allMethods, allTUVariables); in ParseObjCInterfaceDeclList() 2265 void Parser::ObjCImplParsingDataRAII::finish(SourceRange AtEnd) { in finish() argument 2267 P.Actions.DefaultSynthesizeProperties(P.getCurScope(), Dcl, AtEnd.getBegin()); in finish() 2272 P.Actions.ActOnAtEnd(P.getCurScope(), AtEnd); in finish()
|
| /llvm-project-15.0.7/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()
|
| /llvm-project-15.0.7/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 | 3973 Decl *Sema::ActOnAtEnd(Scope *S, SourceRange AtEnd, ArrayRef<Decl *> allMethods, in ActOnAtEnd() argument 3978 assert(AtEnd.isValid() && "Invalid location for '@end'"); in ActOnAtEnd() 4082 CDecl->setAtEndRange(AtEnd); in ActOnAtEnd() 4085 IC->setAtEndRange(AtEnd); in ActOnAtEnd() 4174 CatImplClass->setAtEndRange(AtEnd); in ActOnAtEnd()
|
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | DeclObjC.h | 950 SourceRange AtEnd; variable 1100 SourceRange getAtEndRange() const { return AtEnd; } in getAtEndRange() 1102 void setAtEndRange(SourceRange atEnd) { AtEnd = atEnd; } in setAtEndRange()
|
| /llvm-project-15.0.7/clang/include/clang/Parse/ |
| H A D | Parser.h | 1702 void finish(SourceRange AtEnd);
|
| /llvm-project-15.0.7/clang/include/clang/Sema/ |
| H A D | Sema.h | 4652 SourceLocation AtEnd); 4653 void DefaultSynthesizeProperties(Scope *S, Decl *D, SourceLocation AtEnd); 10030 Decl *ActOnAtEnd(Scope *S, SourceRange AtEnd,
|