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

/external/clang/lib/AST/
H A DStmtProfile.cpp29 bool Canonical; member in class:__anon3659::StmtProfiler
33 bool Canonical)
34 : ID(ID), Context(Context), Canonical(Canonical) { }
257 if (!Canonical)
260 if (!Canonical)
356 if (!Canonical)
1081 if (Canonical && D) {
1126 if (Canonical)
1137 if (Canonical)
32 StmtProfiler(llvm::FoldingSetNodeID &ID, const ASTContext &Context, bool Canonical) argument
[all...]
H A DType.cpp479 ObjCObjectType::ObjCObjectType(QualType Canonical, QualType Base, argument
482 : Type(ObjCObject, Canonical, false, false, false, false),
H A DASTContext.cpp407 const Decl *Canonical = D->getCanonicalDecl(); local
409 ParsedComments.find(Canonical);
412 if (Canonical != D) {
458 ParsedComments[Canonical] = FC;
509 CanonicalTemplateTemplateParm *Canonical local
511 if (Canonical)
512 return Canonical->getParam();
583 Canonical = CanonTemplateTemplateParms.FindNodeOrInsertPos(ID, InsertPos);
584 assert(Canonical == 0 && "Shouldn't be in the map!");
585 (void)Canonical;
2095 QualType Canonical; local
2132 QualType Canonical; local
2674 QualType Canonical; local
3441 QualType Canonical = getCanonicalType(tofExpr->getType()); local
3454 QualType Canonical = getCanonicalType(tofType); local
[all...]
/external/clang/include/clang/AST/
H A DType.h1151 /// information about typedefs being used. Canonical types are useful for type
2686 unsigned typeQuals, QualType Canonical, bool Dependent,
2690 : Type(tc, Canonical, Dependent, InstantiationDependent, VariablyModified,
2731 FunctionNoProtoType(QualType Result, QualType Canonical, ExtInfo Info)
2732 : FunctionType(FunctionNoProto, Result, 0, Canonical,
3840 QualType Canonical, bool Dependent,
3843 : Type(tc, Canonical, Dependent, InstantiationDependent, VariablyModified,
4201 ObjCObjectType(QualType Canonical, QualType Base,
4278 ObjCObjectTypeImpl(QualType Canonical, QualType Base, argument
4281 : ObjCObjectType(Canonical, Bas
3839 TypeWithKeyword(ElaboratedTypeKeyword Keyword, TypeClass tc, QualType Canonical, bool Dependent, bool InstantiationDependent, bool VariablyModified, bool ContainsUnexpandedParameterPack) argument
4362 ObjCObjectPointerType(QualType Canonical, QualType Pointee) argument
4483 AtomicType(QualType ValTy, QualType Canonical) argument
[all...]
/external/clang/lib/Sema/
H A DSemaDeclCXX.cpp11465 CXXRecordDecl *Canonical = cast<CXXRecordDecl>(Class->getCanonicalDecl()); local
11466 Consumer.HandleVTable(Class, VTablesUsed[Canonical]);
11606 CXXConstructorDecl *Canonical = Ctor->getCanonicalDecl(), local
11610 if (!Current.insert(Canonical))
11620 } else if (TCanonical == Canonical || Invalid.count(TCanonical) ||
11629 if (TCanonical != Canonical)
11633 while (C->getCanonicalDecl() != Canonical) {
/external/clang/lib/Serialization/
H A DASTReader.cpp4419 QualType Canonical = readType(*Loc.F, Record, Idx); local
4420 if (!Canonical.isNull())
4421 Canonical = Context.getCanonicalType(Canonical);
4422 return Context.getTypedefType(Decl, Canonical);

Completed in 168 milliseconds