Home | History | Annotate | Download | only in AST

Lines Matching defs:getTypeInfo

1913   TypeInfo getTypeInfo(const Type *T) const;
1914 TypeInfo getTypeInfo(QualType T) const { return getTypeInfo(T.getTypePtr()); }
1920 uint64_t getTypeSize(QualType T) const { return getTypeInfo(T).Width; }
1921 uint64_t getTypeSize(const Type *T) const { return getTypeInfo(T).Width; }
1941 unsigned getTypeAlign(QualType T) const { return getTypeInfo(T).Align; }
1942 unsigned getTypeAlign(const Type *T) const { return getTypeInfo(T).Align; }