Home | History | Annotate | Download | only in AST

Lines Matching defs:getTypeInfo

1954   TypeInfo getTypeInfo(const Type *T) const;
1955 TypeInfo getTypeInfo(QualType T) const { return getTypeInfo(T.getTypePtr()); }
1961 uint64_t getTypeSize(QualType T) const { return getTypeInfo(T).Width; }
1962 uint64_t getTypeSize(const Type *T) const { return getTypeInfo(T).Width; }
1982 unsigned getTypeAlign(QualType T) const { return getTypeInfo(T).Align; }
1983 unsigned getTypeAlign(const Type *T) const { return getTypeInfo(T).Align; }