Searched defs:Canonical (Results 1 - 6 of 6) sorted by relevance

/external/clang/lib/AST/
H A DStmtProfile.cpp29 bool Canonical; member in class:__anon15135::StmtProfiler
33 bool Canonical)
34 : ID(ID), Context(Context), Canonical(Canonical) { }
295 if (!Canonical)
298 if (!Canonical)
394 if (!Canonical)
1142 if (Canonical && D) {
1187 if (Canonical)
1198 if (Canonical)
32 StmtProfiler(llvm::FoldingSetNodeID &ID, const ASTContext &Context, bool Canonical) argument
[all...]
H A DType.cpp463 ObjCObjectType::ObjCObjectType(QualType Canonical, QualType Base, argument
466 : Type(ObjCObject, Canonical, false, false, false, false),
H A DASTContext.cpp429 const Decl *Canonical = D->getCanonicalDecl(); local
431 ParsedComments.find(Canonical);
434 if (Canonical != D) {
527 ParsedComments[Canonical] = FC;
578 CanonicalTemplateTemplateParm *Canonical local
580 if (Canonical)
581 return Canonical->getParam();
652 Canonical = CanonTemplateTemplateParms.FindNodeOrInsertPos(ID, InsertPos);
653 assert(Canonical == 0 && "Shouldn't be in the map!");
654 (void)Canonical;
2168 QualType Canonical = getCanonicalType(Decayed); local
2234 QualType Canonical; local
2271 QualType Canonical; local
2813 QualType Canonical; local
3580 QualType Canonical = getCanonicalType(tofExpr->getType()); local
3593 QualType Canonical = getCanonicalType(tofType); local
[all...]
/external/clang/include/clang/AST/
H A DType.h1149 /// information about typedefs being used. Canonical types are useful for type
2740 unsigned typeQuals, QualType Canonical, bool Dependent,
2744 : Type(tc, Canonical, Dependent, InstantiationDependent, VariablyModified,
2785 FunctionNoProtoType(QualType Result, QualType Canonical, ExtInfo Info)
2786 : FunctionType(FunctionNoProto, Result, 0, Canonical,
3906 QualType Canonical, bool Dependent,
3909 : Type(tc, Canonical, Dependent, InstantiationDependent, VariablyModified,
4267 ObjCObjectType(QualType Canonical, QualType Base,
4344 ObjCObjectTypeImpl(QualType Canonical, QualType Base, argument
4347 : ObjCObjectType(Canonical, Bas
3905 TypeWithKeyword(ElaboratedTypeKeyword Keyword, TypeClass tc, QualType Canonical, bool Dependent, bool InstantiationDependent, bool VariablyModified, bool ContainsUnexpandedParameterPack) argument
4428 ObjCObjectPointerType(QualType Canonical, QualType Pointee) argument
4549 AtomicType(QualType ValTy, QualType Canonical) argument
[all...]
/external/clang/lib/Sema/
H A DSemaDeclCXX.cpp11987 CXXRecordDecl *Canonical = cast<CXXRecordDecl>(Class->getCanonicalDecl()); local
11988 Consumer.HandleVTable(Class, VTablesUsed[Canonical]);
12126 CXXConstructorDecl *Canonical = Ctor->getCanonicalDecl(), local
12130 if (!Current.insert(Canonical))
12139 } else if (TCanonical == Canonical || Invalid.count(TCanonical) ||
12148 if (TCanonical != Canonical)
12152 while (C->getCanonicalDecl() != Canonical) {
/external/clang/lib/Serialization/
H A DASTReader.cpp4704 QualType Canonical = readType(*Loc.F, Record, Idx); local
4705 if (!Canonical.isNull())
4706 Canonical = Context.getCanonicalType(Canonical);
4707 return Context.getTypedefType(Decl, Canonical);

Completed in 283 milliseconds