reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/AST/ASTContext.cpp
 9488     Type = Context.VoidTy;
 9493     Type = Context.HalfTy;
 9498     Type = Context.FloatTy;
 9504       Type = Context.LongDoubleTy;
 9506       Type = Context.Float128Ty;
 9508       Type = Context.DoubleTy;
 9513       Type = Context.UnsignedShortTy;
 9515       Type = Context.ShortTy;
 9519       Type = Unsigned ? Context.UnsignedInt128Ty : Context.Int128Ty;
 9521       Type = Unsigned ? Context.UnsignedLongLongTy : Context.LongLongTy;
 9523       Type = Unsigned ? Context.UnsignedLongTy : Context.LongTy;
 9525       Type = Unsigned ? Context.UnsignedIntTy : Context.IntTy;
 9530       Type = Context.SignedCharTy;
 9532       Type = Context.UnsignedCharTy;
 9534       Type = Context.CharTy;
 9538     Type = Context.BoolTy;
 9542     Type = Context.getSizeType();
 9546     Type = Context.getWideCharType();
 9549     Type = Context.getCFConstantStringType();
 9552     Type = Context.getObjCIdType();
 9555     Type = Context.getObjCSelType();
 9558     Type = Context.getObjCSuperType();
 9561     Type = Context.getBuiltinVaListType();
 9562     assert(!Type.isNull() && "builtin va list type not initialized!");
 9573     Type = Context.getBuiltinVaListType();
 9574     assert(!Type.isNull() && "builtin va list type not initialized!");
 9575     if (Type->isArrayType())
 9576       Type = Context.getArrayDecayedType(Type);
 9576       Type = Context.getArrayDecayedType(Type);
 9578       Type = Context.getLValueReferenceType(Type);
 9578       Type = Context.getLValueReferenceType(Type);
 9591     Type = Context.getVectorType(ElementType, NumElements,
 9605     Type = Context.getExtVectorType(ElementType, NumElements);
 9612     Type = Context.getComplexType(ElementType);
 9616     Type = Context.getPointerDiffType();
 9619     Type = Context.getFILEType();
 9620     if (Type.isNull()) {
 9627       Type = Context.getsigjmp_bufType();
 9629       Type = Context.getjmp_bufType();
 9631     if (Type.isNull()) {
 9638     Type = Context.getucontext_tType();
 9640     if (Type.isNull()) {
 9646     Type = Context.getProcessIDType();
 9663         Type = Context.getAddrSpaceQualType(
 9664           Type,
 9669         Type = Context.getPointerType(Type);
 9669         Type = Context.getPointerType(Type);
 9671         Type = Context.getLValueReferenceType(Type);
 9671         Type = Context.getLValueReferenceType(Type);
 9676       Type = Type.withConst();
 9676       Type = Type.withConst();
 9679       Type = Context.getVolatileType(Type);
 9679       Type = Context.getVolatileType(Type);
 9682       Type = Type.withRestrict();
 9682       Type = Type.withRestrict();
 9687   assert((!RequiresICE || Type->isIntegralOrEnumerationType()) &&
 9690   return Type;