Home | History | Annotate | Download | only in AST

Lines Matching refs:TL

253     TypeLoc TL = TSI->getTypeLoc().getUnqualifiedLoc();
255 TL = TL.IgnoreParens();
257 if (TypedefTypeLoc *TypedefTL = dyn_cast<TypedefTypeLoc>(&TL)) {
261 TL = TSI->getTypeLoc().getUnqualifiedLoc();
265 if (QualifiedTypeLoc *QualifiedTL = dyn_cast<QualifiedTypeLoc>(&TL)) {
266 TL = QualifiedTL->getUnqualifiedLoc();
270 if (PointerTypeLoc *PointerTL = dyn_cast<PointerTypeLoc>(&TL)) {
271 TL = PointerTL->getPointeeLoc().getUnqualifiedLoc();
275 dyn_cast<BlockPointerTypeLoc>(&TL)) {
276 TL = BlockPointerTL->getPointeeLoc().getUnqualifiedLoc();
280 dyn_cast<MemberPointerTypeLoc>(&TL)) {
281 TL = MemberPointerTL->getPointeeLoc().getUnqualifiedLoc();
285 if (FunctionTypeLoc *FTL = dyn_cast<FunctionTypeLoc>(&TL)) {