| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | ODRDiagsEmitter.cpp | 642 DR.FirstDecl ? DifferenceSelector(DR.FirstDecl) : EndOfClass; in FindTypeDiffs() 657 if (DR.FirstDecl) { in diagnoseSubMismatchUnexpected() 880 Diag(FirstDecl->getLocation(), in diagnoseMismatch() 911 const Decl *FirstDecl = DR.FirstDecl; in diagnoseMismatch() local 1549 Diag(FirstDecl->getLocation(), in diagnoseMismatch() 1586 const Decl *FirstDecl = DR.FirstDecl; in diagnoseMismatch() local 1645 Diag(FirstDecl->getLocation(), in diagnoseMismatch() 2024 const Decl *FirstDecl = DR.FirstDecl; in diagnoseMismatch() local 2098 Diag(FirstDecl->getLocation(), in diagnoseMismatch() 2152 const Decl *FirstDecl = DR.FirstDecl; in diagnoseMismatch() local [all …]
|
| H A D | DeclBase.cpp | 1516 ExternalLast->NextInContextAndBits.setPointer(FirstDecl); in LoadLexicalDeclsFromExternalStorage() 1517 FirstDecl = ExternalFirst; in LoadLexicalDeclsFromExternalStorage() 1557 return decl_iterator(FirstDecl); in decls_begin() 1564 return !FirstDecl; in decls_empty() 1624 if (D == FirstDecl) { in removeDecl() 1626 FirstDecl = LastDecl = nullptr; in removeDecl() 1628 FirstDecl = D->NextInContextAndBits.getPointer(); in removeDecl() 1630 for (Decl *I = FirstDecl; true; I = I->NextInContextAndBits.getPointer()) { in removeDecl() 1678 if (FirstDecl) { in addHiddenDecl() 1682 FirstDecl = LastDecl = D; in addHiddenDecl() [all …]
|
| H A D | Decl.cpp | 5019 return field_iterator(decl_iterator(FirstDecl)); in field_begin() 5044 std::tie(FirstDecl, LastDecl) = DeclContext::BuildDeclChain(Decls, false); in reorderDecls() 5074 ExternalLast->NextInContextAndBits.setPointer(FirstDecl); in LoadFieldsFromExternalStorage() 5075 FirstDecl = ExternalFirst; in LoadFieldsFromExternalStorage()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | ODRDiagsEmitter.h | 122 const Decl *FirstDecl = nullptr, *SecondDecl = nullptr; member
|
| H A D | DeclBase.h | 2046 mutable Decl *FirstDecl = nullptr; 2342 decl_iterator noload_decls_begin() const { return decl_iterator(FirstDecl); } 2673 return D && (D->NextInContextAndBits.getPointer() || D == FirstDecl ||
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | LoopRotationUtils.cpp | 740 auto *FirstDecl = in rotateLoop() local 743 cloneAndAdaptNoAliasScopes(NoAliasDeclScopes, FirstDecl, LastInst, in rotateLoop()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Parse/ |
| H A D | Parser.cpp | 606 ImportState = Sema::ModuleImportState::FirstDecl; in ParseFirstTopLevelDecl() 764 if (ImportState == Sema::ModuleImportState::FirstDecl) in ParseTopLevelDecl() 2459 if (ImportState != Sema::ModuleImportState::FirstDecl) { in ParseModuleDecl() 2595 case Sema::ModuleImportState::FirstDecl: in ParseModuleImport()
|
| H A D | ParseDecl.cpp | 2337 Decl *FirstDecl = ParseDeclarationAfterDeclaratorAndAttributes( in ParseDeclGroup() local 2340 ParseLexedAttributeList(LateParsedAttrs, FirstDecl, true, false); in ParseDeclGroup() 2341 D.complete(FirstDecl); in ParseDeclGroup() 2342 if (FirstDecl) in ParseDeclGroup() 2343 DeclsInGroup.push_back(FirstDecl); in ParseDeclGroup()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaModule.cpp | 179 bool IsFirstDecl = ImportState == ModuleImportState::FirstDecl; in ActOnModuleDecl()
|
| H A D | SemaDecl.cpp | 1035 NamedDecl *FirstDecl = Corrected.getFoundDecl(); in ClassifyName() local 1071 if (FirstDecl) in ClassifyName() 1072 Result.addDecl(FirstDecl); in ClassifyName() 1216 if (TypeDecl *Type = dyn_cast<TypeDecl>(FirstDecl)) { in ClassifyName() 1226 dyn_cast<ObjCCompatibleAliasDecl>(FirstDecl)) in ClassifyName() 1244 if (isa<ConceptDecl>(FirstDecl)) in ClassifyName() 1246 TemplateName(cast<TemplateDecl>(FirstDecl))); in ClassifyName() 1254 if (isa<TemplateDecl>(FirstDecl) && !isa<FunctionTemplateDecl>(FirstDecl) && in ClassifyName() 1255 !isa<VarTemplateDecl>(FirstDecl)) in ClassifyName() 1257 TemplateName(cast<TemplateDecl>(FirstDecl))); in ClassifyName() [all …]
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReaderDecl.cpp | 2817 auto *FirstDecl = cast_or_null<T>(Reader.GetDecl(FirstDeclID)); in VisitRedeclarable() local 2818 if (FirstDecl != D) { in VisitRedeclarable() 2823 D->RedeclLink = Redeclarable<T>::PreviousDeclLink(FirstDecl); in VisitRedeclarable() 2824 D->First = FirstDecl->getCanonicalDecl(); in VisitRedeclarable()
|
| H A D | ASTReader.cpp | 1662 const DeclID *FirstDecl = F->FileSortedDecls + Record[6]; in ReadSLocEntry() local 1665 FileDeclsInfo(F, llvm::ArrayRef(FirstDecl, NumFileDecls)); in ReadSLocEntry()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Sema.h | 3213 FirstDecl, ///< Parsing the first decl in a TU. enumerator
|