| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/ |
| H A D | DWARFDie.h | 422 bool AtEnd; variable 426 : Die(It.Die), AtEnd(!It.Die.getPreviousSibling()) { in reverse_iterator() 427 if (!AtEnd) in reverse_iterator() 432 return llvm::DWARFDie::iterator(AtEnd ? Die : Die.getSibling()); in base() 436 assert(!AtEnd && "Incrementing rend"); 441 AtEnd = true; 446 if (AtEnd) { 447 AtEnd = false; 464 return Die == RHS.Die && AtEnd == RHS.AtEnd; in equals()
|
| /freebsd/contrib/llvm-project/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 [all...] |
| /freebsd/contrib/llvm-project/llvm/lib/SandboxIR/ |
| H A D | Value.cpp | 36 bool AtEnd = UseBegin == UseEnd; in user_begin() local 37 llvm::Use *LLVMUse = AtEnd ? nullptr : &*UseBegin; in user_begin() 39 AtEnd ? nullptr in user_begin()
|
| /freebsd/contrib/googletest/googletest/include/gtest/internal/ |
| H A D | gtest-param-util.h | 865 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/llvm/tools/llvm-readobj/ |
| H A D | Win64EHDumper.cpp | 324 bool AtEnd = (UC[0].getOpInfo() & 0x1) != 0; in printUnwindCode() local 326 OS << " atend=" << (AtEnd ? "yes" : "no") in printUnwindCode()
|
| /freebsd/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseObjc.cpp | 567 SourceRange AtEnd; in ParseObjCInterfaceDeclList() local 654 AtEnd.setBegin(AtLoc); in ParseObjCInterfaceDeclList() 655 AtEnd.setEnd(Tok.getLocation()); in ParseObjCInterfaceDeclList() 762 AtEnd.setBegin(Tok.getLocation()); in ParseObjCInterfaceDeclList() 763 AtEnd.setEnd(Tok.getLocation()); in ParseObjCInterfaceDeclList() 768 Actions.ObjC().ActOnAtEnd(getCurScope(), AtEnd, allMethods, allTUVariables); in ParseObjCInterfaceDeclList() 2042 void Parser::ObjCImplParsingDataRAII::finish(SourceRange AtEnd) { in finish() argument 2045 AtEnd.getBegin()); in finish() 2050 P.Actions.ObjC().ActOnAtEnd(P.getCurScope(), AtEnd); in finish()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | SemaObjC.h | 338 Decl *ActOnAtEnd(Scope *S, SourceRange AtEnd, 1002 SourceLocation AtEnd); 1003 void DefaultSynthesizeProperties(Scope *S, Decl *D, SourceLocation AtEnd);
|
| /freebsd/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/contrib/llvm-project/llvm/tools/llvm-objdump/ |
| H A D | COFFDump.cpp | 315 bool AtEnd = (UCs[0].getOpInfo() & 0x1) != 0; in printUnwindCode() local 317 outs() << " atend=" << (AtEnd ? "yes" : "no") in printUnwindCode()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaObjCProperty.cpp | 1879 SourceLocation AtEnd) { in DefaultSynthesizeProperties() argument 1931 Diag(AtEnd, diag::note_add_synthesize_directive) in DefaultSynthesizeProperties() 1932 << FixItHint::CreateInsertion(AtEnd, FixIt); in DefaultSynthesizeProperties() 1973 SourceLocation AtEnd) { in DefaultSynthesizeProperties() argument 1982 DefaultSynthesizeProperties(S, IC, IDecl, AtEnd); in DefaultSynthesizeProperties()
|
| H A D | SemaDeclObjC.cpp | 3985 Decl *SemaObjC::ActOnAtEnd(Scope *S, SourceRange AtEnd, in ActOnAtEnd() argument 3992 assert(AtEnd.isValid() && "Invalid location for '@end'"); in ActOnAtEnd() 4097 CDecl->setAtEndRange(AtEnd); in ActOnAtEnd() 4100 IC->setAtEndRange(AtEnd); in ActOnAtEnd() 4189 CatImplClass->setAtEndRange(AtEnd); in ActOnAtEnd()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | DeclObjC.h | 951 SourceRange AtEnd; variable 1100 SourceRange getAtEndRange() const { return AtEnd; } in getAtEndRange() 1102 void setAtEndRange(SourceRange atEnd) { AtEnd = atEnd; } in setAtEndRange()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Parse/ |
| H A D | Parser.h | 5625 void finish(SourceRange AtEnd);
|