HomeSort by: relevance | last modified time | path
    Searched defs:Canonical (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Analysis/
ThreadSafetyCommon.cpp 281 const Decl *Canonical = Ctx->AttrDecl->getCanonicalDecl();
283 ? (cast<FunctionDecl>(D)->getCanonicalDecl() == Canonical)
284 : (cast<ObjCMethodDecl>(D)->getCanonicalDecl() == Canonical)) {
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaAttr.cpp 149 QualType Canonical = TD->getUnderlyingType().getCanonicalType();
151 CXXRecordDecl *RD = Canonical->getAsCXXRecordDecl();
154 dyn_cast<TemplateSpecializationType>(Canonical.getTypePtr())) {
SemaDecl.cpp 4337 // Make the canonical definition visible.
8378 Decl *Canonical = Result->getCanonicalDecl();
8381 if ((*I)->getCanonicalDecl() == Canonical)
  /src/external/apache2/llvm/dist/clang/lib/AST/
StmtProfile.cpp 31 bool Canonical;
34 StmtProfiler(llvm::FoldingSetNodeID &ID, bool Canonical)
35 : ID(ID), Canonical(Canonical) {}
82 const ASTContext &Context, bool Canonical)
83 : StmtProfiler(ID, Canonical), Context(Context) {}
92 if (Canonical && D) {
137 if (Canonical && !T.isNull())
152 if (Canonical)
158 if (Canonical)
    [all...]
ASTContext.cpp 558 const Decl *Canonical = D->getCanonicalDecl();
560 ParsedComments.find(Canonical);
563 if (Canonical != D) {
654 ParsedComments[Canonical] = FC;
678 /*Canonical=*/true);
710 RequiresClause->Profile(ID, C, /*Canonical=*/true);
767 // Check if we already have a canonical template template parameter.
771 CanonicalTemplateTemplateParm *Canonical
773 if (Canonical)
774 return Canonical->getParam()
5110 QualType canonical; local
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderDecl.cpp 97 /// used. We use it to delay the marking of the canonical decl as used until
465 DeclT *Canonical = nullptr;
476 Canonical = Current;
483 // we reached was the canonical declaration, so stop when we see that one
485 if (Current == Start || Current == Canonical)
529 // update its canonical decl to signal that the entire entity is used.
973 if (FD->isCanonicalDecl()) { // if canonical add to template's set.
1172 // Set the definition data of the canonical declaration, so other
1237 // Set the definition data of the canonical declaration, so other
1916 // Beware: we do not yet know our canonical declaration, and may stil
    [all...]

Completed in 72 milliseconds