Home | History | Annotate | Download | only in AST

Lines Matching defs:CalleeType

804   QualType CalleeType = getCallee()->getType();
805 if (const PointerType *FnTypePtr = CalleeType->getAs<PointerType>())
806 CalleeType = FnTypePtr->getPointeeType();
807 else if (const BlockPointerType *BPT = CalleeType->getAs<BlockPointerType>())
808 CalleeType = BPT->getPointeeType();
809 else if (CalleeType->isSpecificPlaceholderType(BuiltinType::BoundMember))
811 CalleeType = Expr::findBoundMemberType(getCallee());
813 const FunctionType *FnType = CalleeType->castAs<FunctionType>();