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()
1362 if (!Canonical) in VisitDeclRefExpr()
[all …]
H A DASTContext.cpp620 const Decl *Canonical = D->getCanonicalDecl(); in getCommentForDecl() local
622 ParsedComments.find(Canonical); in getCommentForDecl()
625 if (Canonical != D) { in getCommentForDecl()
716 ParsedComments[Canonical] = FC; in getCommentForDecl()
771 CanonicalTemplateTemplateParm *Canonical in getCanonicalTemplateTemplateParmDecl() local
773 if (Canonical) in getCanonicalTemplateTemplateParmDecl()
774 return Canonical->getParam(); in getCanonicalTemplateTemplateParmDecl()
838 Canonical = CanonTemplateTemplateParms.FindNodeOrInsertPos(ID, InsertPos); in getCanonicalTemplateTemplateParmDecl()
839 assert(!Canonical && "Shouldn't be in the map!"); in getCanonicalTemplateTemplateParmDecl()
840 (void)Canonical; in getCanonicalTemplateTemplateParmDecl()
[all …]
H A DType.cpp860 ObjCObjectType::ObjCObjectType(QualType Canonical, QualType Base, in ObjCObjectType() argument
864 : Type(ObjCObject, Canonical, Base->getDependence()), BaseType(Base) { in ObjCObjectType()
3903 const ASTContext &Context, bool Canonical) { in Profile() argument
3941 epi.ExceptionSpec.NoexceptExpr->Profile(ID, Context, Canonical); in Profile()
4159 PackIndexingType::PackIndexingType(QualType Canonical, QualType Pattern, in PackIndexingType() argument
4162 : Type(PackIndexing, Canonical, in PackIndexingType()
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DModuleMap.cpp1613 auto GenNoteAndFixIt = [&](StringRef BadName, StringRef Canonical, in diagnosePrivateModules()
1618 D << FixItHint::CreateReplacement(ReplLoc, Canonical); in diagnosePrivateModules()
1630 SmallString<128> Canonical(M->Name); in diagnosePrivateModules() local
1631 Canonical.append("_Private"); in diagnosePrivateModules()
1647 FixedPrivModDecl.append(Canonical); in diagnosePrivateModules()
1656 ActiveModule->Name != Canonical) { in diagnosePrivateModules()
1660 GenNoteAndFixIt(ActiveModule->Name, Canonical, M, in diagnosePrivateModules()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DType.h3455 DecayedType(QualType OriginalType, QualType Decayed, QualType Canonical);
4698 FunctionType(TypeClass tc, QualType res, QualType Canonical,
4700 : Type(tc, Canonical, Dependence), ResultType(res) {
4757 FunctionNoProtoType(QualType Result, QualType Canonical, ExtInfo Info)
4758 : FunctionType(FunctionNoProto, Result, Canonical,
5742 bool Canonical);
6013 PackIndexingType(QualType Canonical, QualType Pattern, Expr *IndexExpr,
7075 QualType Canonical, TypeDependence Dependence)
7076 : Type(tc, Canonical, Dependence) {
7537 ObjCObjectType(QualType Canonical, QualType Base,
[all …]
H A DDecl.h3219 const FieldDecl *Canonical = getCanonicalDecl(); in getFieldIndex() local
3220 if (Canonical->CachedFieldIndex == 0) { in getFieldIndex()
3221 Canonical->setCachedFieldIndex(); in getFieldIndex()
3222 assert(Canonical->CachedFieldIndex != 0); in getFieldIndex()
3224 return Canonical->CachedFieldIndex - 1; in getFieldIndex()
H A DStmt.h1606 bool Canonical, bool ProfileLambdaExpr = false) const;
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DThreadSafetyCommon.cpp334 const Decl *Canonical = Ctx->AttrDecl->getCanonicalDecl(); in translateDeclRefExpr() local
336 ? (cast<FunctionDecl>(D)->getCanonicalDecl() == Canonical) in translateDeclRefExpr()
337 : (cast<ObjCMethodDecl>(D)->getCanonicalDecl() == Canonical)) { in translateDeclRefExpr()
/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/Sema/
H A DSemaAttr.cpp153 QualType Canonical = TD->getUnderlyingType().getCanonicalType(); in inferGslPointerAttribute() local
155 CXXRecordDecl *RD = Canonical->getAsCXXRecordDecl(); in inferGslPointerAttribute()
158 dyn_cast<TemplateSpecializationType>(Canonical.getTypePtr())) { in inferGslPointerAttribute()
H A DSemaDeclCXX.cpp19087 CXXRecordDecl *Canonical = Class->getCanonicalDecl(); in DefineUsedVTables() local
19088 if (VTablesUsed[Canonical] && !Class->shouldEmitInExternalSource()) in DefineUsedVTables()
19171 CXXConstructorDecl *Canonical = Ctor->getCanonicalDecl(), in DelegatingCycleHelper() local
19175 if (!Current.insert(Canonical).second) in DelegatingCycleHelper()
19184 } else if (TCanonical == Canonical || Invalid.count(TCanonical) || in DelegatingCycleHelper()
19193 if (TCanonical != Canonical) in DelegatingCycleHelper()
19197 while (C->getCanonicalDecl() != Canonical) { in DelegatingCycleHelper()
H A DSemaDecl.cpp9242 Decl *Canonical = Result->getCanonicalDecl(); in DiagnoseInvalidRedeclaration() local
9245 if ((*I)->getCanonicalDecl() == Canonical) in DiagnoseInvalidRedeclaration()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp464 DeclT *Canonical = nullptr; member in __anon3c764c3a0211::MergedRedeclIterator
475 Canonical = Current; in operator ++()
484 if (Current == Start || Current == Canonical) in operator ++()
/freebsd/crypto/openssl/include/openssl/
H A Dx509v3.h.in961 * Canonical forms.
/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/krb5/src/include/krb5/
H A Dkrb5.hin8383 * @param [in] server_princ Canonical ticket server name
/freebsd/crypto/heimdal/lib/wind/
H A DNormalizationTest.txt16459 @Part2 # Canonical Order Test