Home | History | Annotate | Download | only in AST

Lines Matching refs:CalleeType

1198   QualType CalleeType = getCallee()->getType();
1199 if (const PointerType *FnTypePtr = CalleeType->getAs<PointerType>())
1200 CalleeType = FnTypePtr->getPointeeType();
1201 else if (const BlockPointerType *BPT = CalleeType->getAs<BlockPointerType>())
1202 CalleeType = BPT->getPointeeType();
1203 else if (CalleeType->isSpecificPlaceholderType(BuiltinType::BoundMember))
1205 CalleeType = Expr::findBoundMemberType(getCallee());
1207 const FunctionType *FnType = CalleeType->castAs<FunctionType>();