Home
last modified time | relevance | path

Searched refs:Canonical (Results 1 – 18 of 18) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmtProfile.cpp31 bool Canonical; member in __anon9529c64a0111::StmtProfiler
35 StmtProfiler(llvm::FoldingSetNodeID &ID, bool Canonical, in StmtProfiler() argument
37 : ID(ID), Canonical(Canonical), ProfileLambdaExpr(ProfileLambdaExpr) {} in StmtProfiler()
88 const ASTContext &Context, bool Canonical, in StmtProfilerWithPointers() argument
90 : StmtProfiler(ID, Canonical, ProfileLambdaExpr), Context(Context) {} in StmtProfilerWithPointers()
100 if (Canonical && D) { in VisitDecl()
156 if (Canonical && !T.isNull()) in VisitType()
171 if (Canonical) in VisitNestedNameSpecifier()
177 if (Canonical) in VisitTemplateName()
1326 if (!Canonical) in VisitDeclRefExpr()
[all …]
H A DASTContext.cpp587 const Decl *Canonical = D->getCanonicalDecl(); in getCommentForDecl() local
589 ParsedComments.find(Canonical); in getCommentForDecl()
592 if (Canonical != D) { in getCommentForDecl()
683 ParsedComments[Canonical] = FC; in getCommentForDecl()
741 CanonicalTemplateTemplateParm *Canonical in getCanonicalTemplateTemplateParmDecl() local
743 if (Canonical) in getCanonicalTemplateTemplateParmDecl()
744 return Canonical->getParam(); in getCanonicalTemplateTemplateParmDecl()
810 Canonical = CanonTemplateTemplateParms.FindNodeOrInsertPos(ID, InsertPos); in getCanonicalTemplateTemplateParmDecl()
811 assert(!Canonical && "Shouldn't be in the map!"); in getCanonicalTemplateTemplateParmDecl()
812 (void)Canonical; in getCanonicalTemplateTemplateParmDecl()
[all …]
H A DType.cpp810 ObjCObjectType::ObjCObjectType(QualType Canonical, QualType Base, in ObjCObjectType() argument
814 : Type(ObjCObject, Canonical, Base->getDependence()), BaseType(Base) { in ObjCObjectType()
3750 const ASTContext &Context, bool Canonical) { in Profile() argument
3790 epi.ExceptionSpec.NoexceptExpr->Profile(ID, Context, Canonical); in Profile()
3987 QualType Canonical, QualType Pattern, in PackIndexingType() argument
3990 : Type(PackIndexing, Canonical, in PackIndexingType()
H A DDecl.cpp4637 const FieldDecl *Canonical = getCanonicalDecl(); in getFieldIndex() local
4638 if (Canonical != this) in getFieldIndex()
4639 return Canonical->getFieldIndex(); in getFieldIndex()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DType.h3358 DecayedType(QualType OriginalType, QualType Decayed, QualType Canonical);
4586 FunctionType(TypeClass tc, QualType res, QualType Canonical,
4588 : Type(tc, Canonical, Dependence), ResultType(res) {
4641 FunctionNoProtoType(QualType Result, QualType Canonical, ExtInfo Info)
4642 : FunctionType(FunctionNoProto, Result, Canonical,
5530 bool Canonical);
5799 PackIndexingType(const ASTContext &Context, QualType Canonical,
6710 QualType Canonical, TypeDependence Dependence)
6711 : Type(tc, Canonical, Dependence) {
7181 ObjCObjectType(QualType Canonical, QualType Base,
[all …]
H A DStmt.h1481 bool Canonical, bool ProfileLambdaExpr = false) const;
/freebsd/sys/contrib/openzfs/
H A D.mailmap17 # Canonical Name <canonical-email>
18 # Canonical Name <canonical-email> <commit-email>
19 # Canonical Name <canonical-email> Commit Name <commit-email>
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DModuleMap.cpp1859 auto GenNoteAndFixIt = [&](StringRef BadName, StringRef Canonical, in diagnosePrivateModules()
1864 D << FixItHint::CreateReplacement(ReplLoc, Canonical); in diagnosePrivateModules()
1876 SmallString<128> Canonical(M->Name); in diagnosePrivateModules() local
1877 Canonical.append("_Private"); in diagnosePrivateModules()
1895 FixedPrivModDecl.append(Canonical); in diagnosePrivateModules()
1904 ActiveModule->Name != Canonical) { in diagnosePrivateModules()
1908 GenNoteAndFixIt(ActiveModule->Name, Canonical, M, in diagnosePrivateModules()
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DThreadSafetyCommon.cpp317 const Decl *Canonical = Ctx->AttrDecl->getCanonicalDecl(); in translateDeclRefExpr() local
319 ? (cast<FunctionDecl>(D)->getCanonicalDecl() == Canonical) in translateDeclRefExpr()
320 : (cast<ObjCMethodDecl>(D)->getCanonicalDecl() == Canonical)) { in translateDeclRefExpr()
/freebsd/contrib/libucl/
H A DChangeLog.md47 - Add Canonical S-expressions parser for libucl
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaAttr.cpp152 QualType Canonical = TD->getUnderlyingType().getCanonicalType(); in inferGslPointerAttribute() local
154 CXXRecordDecl *RD = Canonical->getAsCXXRecordDecl(); in inferGslPointerAttribute()
157 dyn_cast<TemplateSpecializationType>(Canonical.getTypePtr())) { in inferGslPointerAttribute()
H A DSemaDeclCXX.cpp18572 CXXRecordDecl *Canonical = Class->getCanonicalDecl(); in DefineUsedVTables() local
18573 if (VTablesUsed[Canonical] && !Class->shouldEmitInExternalSource()) in DefineUsedVTables()
18656 CXXConstructorDecl *Canonical = Ctor->getCanonicalDecl(), in DelegatingCycleHelper() local
18660 if (!Current.insert(Canonical).second) in DelegatingCycleHelper()
18669 } else if (TCanonical == Canonical || Invalid.count(TCanonical) || in DelegatingCycleHelper()
18678 if (TCanonical != Canonical) in DelegatingCycleHelper()
18682 while (C->getCanonicalDecl() != Canonical) { in DelegatingCycleHelper()
H A DSemaDecl.cpp9027 Decl *Canonical = Result->getCanonicalDecl(); in DiagnoseInvalidRedeclaration() local
9030 if ((*I)->getCanonicalDecl() == Canonical) in DiagnoseInvalidRedeclaration()
/freebsd/crypto/openssl/include/openssl/
H A Dx509v3.h.in917 * Canonical forms.
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp482 DeclT *Canonical = nullptr; member in __anon3c764c3a0111::MergedRedeclIterator
493 Canonical = Current; in operator ++()
502 if (Current == Start || Current == Canonical) in operator ++()
/freebsd/contrib/one-true-awk/testdir/
H A Dfunstack.ok684 T. C. Chiang Canonical Structure in Attribute Based
H A Dfunstack.in4923 title = "Canonical Structure in Attribute Based File Organization",
/freebsd/crypto/heimdal/lib/wind/
H A DNormalizationTest.txt16459 @Part2 # Canonical Order Test