Home | History | Annotate | Download | only in Sema

Lines Matching defs:TL

2188   TypeLoc TL;
2190 TL = TSInfo->getTypeLoc().getUnqualifiedLoc();
2194 if (TypedefTypeLoc TypedefTL = TL.getAs<TypedefTypeLoc>()) {
2197 TL = InnerTSInfo->getTypeLoc().getUnqualifiedLoc();
2203 if (QualifiedTypeLoc QualifiedTL = TL.getAs<QualifiedTypeLoc>()) {
2204 TL = QualifiedTL.getUnqualifiedLoc();
2208 if (AttributedTypeLoc AttrTL = TL.getAs<AttributedTypeLoc>()) {
2209 TL = AttrTL.getModifiedLoc();
2216 if (BlockPointerTypeLoc BlockPtr = TL.getAs<BlockPointerTypeLoc>()) {
2217 TL = BlockPtr.getPointeeLoc().IgnoreParens();
2218 Block = TL.getAs<FunctionTypeLoc>();
2219 BlockProto = TL.getAs<FunctionProtoTypeLoc>();