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

References

tools/clang/lib/Sema/SemaTemplateDeduction.cpp
 4162   if (const ReferenceType *PRef = P->getAs<ReferenceType>())
 4163     P = PRef->getPointeeType();
 4175       P = P.getUnqualifiedType();
 4175       P = P.getUnqualifiedType();
 4187     if (P->isArrayType())
 4188       P = Context.getArrayDecayedType(P);
 4188       P = Context.getArrayDecayedType(P);
 4192     else if (P->isFunctionType())
 4193       P = Context.getPointerType(P);
 4193       P = Context.getPointerType(P);
 4197       P = P.getUnqualifiedType();
 4197       P = P.getUnqualifiedType();
 4238   if ((P->isPointerType() && A->isPointerType()) ||
 4239       (P->isMemberPointerType() && A->isMemberPointerType()))
 4243                                              P, A, Info, Deduced, TDF))