Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDie.h412 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 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;
/llvm-project-15.0.7/lldb/unittests/Utility/
H A DAnsiTerminalTest.cpp21 TEST(AnsiTerminal, AtEnd) { in TEST() argument
/llvm-project-15.0.7/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-param-util.h794 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 DParseObjc.cpp599 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 DReplacement.cpp262 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 DSemaObjCProperty.cpp1890 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 DSemaDeclObjC.cpp3973 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 DDeclObjC.h950 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 DParser.h1702 void finish(SourceRange AtEnd);
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DSema.h4652 SourceLocation AtEnd);
4653 void DefaultSynthesizeProperties(Scope *S, Decl *D, SourceLocation AtEnd);
10030 Decl *ActOnAtEnd(Scope *S, SourceRange AtEnd,