Home | History | Annotate | Download | only in AST

Lines Matching defs:CalleeType

1237   QualType CalleeType = getCallee()->getType();
1238 if (const PointerType *FnTypePtr = CalleeType->getAs<PointerType>())
1239 CalleeType = FnTypePtr->getPointeeType();
1240 else if (const BlockPointerType *BPT = CalleeType->getAs<BlockPointerType>())
1241 CalleeType = BPT->getPointeeType();
1242 else if (CalleeType->isSpecificPlaceholderType(BuiltinType::BoundMember))
1244 CalleeType = Expr::findBoundMemberType(getCallee());
1246 const FunctionType *FnType = CalleeType->castAs<FunctionType>();