reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/Sema/SemaType.cpp
 6335     FunctionTypeUnwrapper(Sema &S, QualType T) : Original(T) {
 6337         const Type *Ty = T.getTypePtr();
 6342           T = cast<ParenType>(Ty)->getInnerType();
 6345           T = cast<PointerType>(Ty)->getPointeeType();
 6348           T = cast<BlockPointerType>(Ty)->getPointeeType();
 6351           T = cast<MemberPointerType>(Ty)->getPointeeType();
 6354           T = cast<ReferenceType>(Ty)->getPointeeType();
 6357           T = cast<AttributedType>(Ty)->getEquivalentType();
 6366           T = QualType(DTy, 0);