Home | History | Annotate | Download | only in AST

Lines Matching refs:CalleeType

949   QualType CalleeType = getCallee()->getType();
950 if (const PointerType *FnTypePtr = CalleeType->getAs<PointerType>())
951 CalleeType = FnTypePtr->getPointeeType();
952 else if (const BlockPointerType *BPT = CalleeType->getAs<BlockPointerType>())
953 CalleeType = BPT->getPointeeType();
954 else if (CalleeType->isSpecificPlaceholderType(BuiltinType::BoundMember))
956 CalleeType = Expr::findBoundMemberType(getCallee());
958 const FunctionType *FnType = CalleeType->castAs<FunctionType>();