Home | History | Annotate | Download | only in AST

Lines Matching defs:getTypeInfo

1806   TypeInfo getTypeInfo(const Type *T) const;
1807 TypeInfo getTypeInfo(QualType T) const { return getTypeInfo(T.getTypePtr()); }
1813 uint64_t getTypeSize(QualType T) const { return getTypeInfo(T).Width; }
1814 uint64_t getTypeSize(const Type *T) const { return getTypeInfo(T).Width; }
1834 unsigned getTypeAlign(QualType T) const { return getTypeInfo(T).Align; }
1835 unsigned getTypeAlign(const Type *T) const { return getTypeInfo(T).Align; }