Home
last modified time | relevance | path

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

/freebsd/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/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
[all...]
/freebsd/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-param-util.h865 assert(!AtEnd()); in GTEST_DISABLE_MSC_WARNINGS_POP_()
890 if (AtEnd() && typed_other->AtEnd()) return true; in GTEST_DISABLE_MSC_WARNINGS_POP_()
918 if (!AtEnd()) in GTEST_DISABLE_MSC_WARNINGS_POP_()
921 bool AtEnd() const { in GTEST_DISABLE_MSC_WARNINGS_POP_()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaObjC.h350 Decl *ActOnAtEnd(Scope *S, SourceRange AtEnd,
1009 SourceLocation AtEnd);
1010 void DefaultSynthesizeProperties(Scope *S, Decl *D, SourceLocation AtEnd);
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseObjc.cpp648 SourceRange AtEnd; in ParseObjCInterfaceDeclList() local
735 AtEnd.setBegin(AtLoc); in ParseObjCInterfaceDeclList()
736 AtEnd.setEnd(Tok.getLocation()); in ParseObjCInterfaceDeclList()
843 AtEnd.setBegin(Tok.getLocation()); in ParseObjCInterfaceDeclList()
844 AtEnd.setEnd(Tok.getLocation()); in ParseObjCInterfaceDeclList()
849 Actions.ObjC().ActOnAtEnd(getCurScope(), AtEnd, allMethods, allTUVariables); in ParseObjCInterfaceDeclList()
2319 void Parser::ObjCImplParsingDataRAII::finish(SourceRange AtEnd) { in finish() argument
2322 AtEnd.getBegin()); in finish()
2327 P.Actions.ObjC().ActOnAtEnd(P.getCurScope(), AtEnd); in finish()
/freebsd/contrib/llvm-project/llvm/lib/SandboxIR/
H A DSandboxIR.cpp100 bool AtEnd = UseBegin == UseEnd; in user_begin() local
101 llvm::Use *LLVMUse = AtEnd ? nullptr : &*UseBegin; in user_begin()
103 AtEnd ? nullptr in user_begin()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaObjCProperty.cpp1868 SourceLocation AtEnd) { in DefaultSynthesizeProperties() argument
1920 Diag(AtEnd, diag::note_add_synthesize_directive) in DefaultSynthesizeProperties()
1921 << FixItHint::CreateInsertion(AtEnd, FixIt); in DefaultSynthesizeProperties()
1962 SourceLocation AtEnd) { in DefaultSynthesizeProperties() argument
1971 DefaultSynthesizeProperties(S, IC, IDecl, AtEnd); in DefaultSynthesizeProperties()
H A DSemaDeclObjC.cpp3983 Decl *SemaObjC::ActOnAtEnd(Scope *S, SourceRange AtEnd, in ActOnAtEnd() argument
3990 assert(AtEnd.isValid() && "Invalid location for '@end'"); in ActOnAtEnd()
4095 CDecl->setAtEndRange(AtEnd); in ActOnAtEnd()
4098 IC->setAtEndRange(AtEnd); in ActOnAtEnd()
4187 CatImplClass->setAtEndRange(AtEnd); in ActOnAtEnd()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclObjC.h953 SourceRange AtEnd; variable
1102 SourceRange getAtEndRange() const { return AtEnd; } in getAtEndRange()
1104 void setAtEndRange(SourceRange atEnd) { AtEnd = atEnd; } in setAtEndRange()
/freebsd/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h1793 void finish(SourceRange AtEnd);