Home | History | Annotate | Download | only in AST

Lines Matching refs:TL

240     TypeLoc TL = TSI->getTypeLoc().getUnqualifiedLoc();
242 TL = TL.IgnoreParens();
244 if (QualifiedTypeLoc QualifiedTL = TL.getAs<QualifiedTypeLoc>()) {
245 TL = QualifiedTL.getUnqualifiedLoc();
249 if (PointerTypeLoc PointerTL = TL.getAs<PointerTypeLoc>()) {
250 TL = PointerTL.getPointeeLoc().getUnqualifiedLoc();
254 TL.getAs<BlockPointerTypeLoc>()) {
255 TL = BlockPointerTL.getPointeeLoc().getUnqualifiedLoc();
259 TL.getAs<MemberPointerTypeLoc>()) {
260 TL = MemberPointerTL.getPointeeLoc().getUnqualifiedLoc();
264 if (FunctionTypeLoc FTL = TL.getAs<FunctionTypeLoc>()) {