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

References

tools/clang/lib/ARCMigrate/ObjCMT.cpp
 1230     if (!Ctx.hasSameUnqualifiedType(ArgType, GRT))
tools/clang/lib/AST/ASTContext.cpp
 5280       hasSameUnqualifiedType(QualType(T1MPType->getClass(), 0),
 7948   if (hasSameUnqualifiedType(FirstVec, SecondVec))
tools/clang/lib/AST/DeclCXX.cpp
 1226             if (Context.hasSameUnqualifiedType(BI.getType(), T)) {
 2182       Context.hasSameUnqualifiedType(getParamDecl(UsualParams)->getType(),
 2236   return Context.hasSameUnqualifiedType(ClassType, ParamType);
 2257   return Context.hasSameUnqualifiedType(ClassType, ParamType);
tools/clang/lib/AST/Expr.cpp
 1973     if (Ctx.hasSameUnqualifiedType(Field->getType(), OpType) &&
 2914         Ctx.hasSameUnqualifiedType(E->getType(), SubExpr->getType());
 3039   if (!C.hasSameUnqualifiedType(getType(), C.getTypeDeclType(TempTy)))
tools/clang/lib/AST/ExprConstant.cpp
 5116   if (!Info.Ctx.hasSameUnqualifiedType(Callee->getReturnType(),
 5126       if (Next && !Info.Ctx.hasSameUnqualifiedType(
 5130     if (!Info.Ctx.hasSameUnqualifiedType(Found->getReturnType(),
 7953           Info.Ctx.hasSameUnqualifiedType(Result.Designator.getType(Info.Ctx),
 8248            Info.Ctx.hasSameUnqualifiedType(
 8373     if (!Info.Ctx.hasSameUnqualifiedType(T, SrcT)) {
 8604         if (!Info.Ctx.hasSameUnqualifiedType(SubobjType, AllocType)) {
10723           Info.Ctx.hasSameUnqualifiedType(CharTy, Info.Ctx.CharTy)) {
10805            (Info.Ctx.hasSameUnqualifiedType(
10807             Info.Ctx.hasSameUnqualifiedType(CharTy1, CharTy2)));
tools/clang/lib/Analysis/BodyFarm.cpp
  772   if (!Ctx.hasSameUnqualifiedType(IVar->getType(),
tools/clang/lib/CodeGen/CGBuiltin.cpp
  122   assert(CGF.getContext().hasSameUnqualifiedType(T,
  124   assert(CGF.getContext().hasSameUnqualifiedType(T, E->getArg(1)->getType()));
  183   assert(CGF.getContext().hasSameUnqualifiedType(T,
  185   assert(CGF.getContext().hasSameUnqualifiedType(T, E->getArg(1)->getType()));
  272   assert(CGF.getContext().hasSameUnqualifiedType(
  274   assert(CGF.getContext().hasSameUnqualifiedType(E->getType(),
  276   assert(CGF.getContext().hasSameUnqualifiedType(E->getType(),
tools/clang/lib/CodeGen/CGCall.cpp
 3462             getContext().hasSameUnqualifiedType((*Arg)->getType(),
tools/clang/lib/CodeGen/CGClass.cpp
 2208       assert(getContext().hasSameUnqualifiedType(
tools/clang/lib/CodeGen/CGExprAgg.cpp
  753     assert(CGF.getContext().hasSameUnqualifiedType(valueType,
  767       assert(CGF.getContext().hasSameUnqualifiedType(op->getType(),
  826     assert(CGF.getContext().hasSameUnqualifiedType(E->getSubExpr()->getType(),
 1141   assert(CGF.getContext().hasSameUnqualifiedType(E->getLHS()->getType(),
tools/clang/lib/CodeGen/CGExprCXX.cpp
  597     assert(getContext().hasSameUnqualifiedType(E->getType(),
 1176   assert(getContext().hasSameUnqualifiedType(ElementType, Init->getType()) &&
 1605         assert(getContext().hasSameUnqualifiedType(
tools/clang/lib/CodeGen/CGExprComplex.cpp
  907             .hasSameUnqualifiedType(ComplexElementTy, E->getRHS()->getType()));
  911                .hasSameUnqualifiedType(OpInfo.Ty, E->getRHS()->getType()));
  927       if (!CGF.getContext().hasSameUnqualifiedType(ComplexElementTy, LHSTy))
  974   assert(CGF.getContext().hasSameUnqualifiedType(E->getLHS()->getType(),
tools/clang/lib/CodeGen/CGExprConstant.cpp
 1290       assert(CGM.getContext().hasSameUnqualifiedType(Ty, Arg->getType()) &&
tools/clang/lib/CodeGen/CGExprScalar.cpp
 2155     assert(CGF.getContext().hasSameUnqualifiedType(E->getType(), DestTy));
 3868       assert(CGF.getContext().hasSameUnqualifiedType(CETy,
 3875       assert(CGF.getContext().hasSameUnqualifiedType(CETy, RHSTy) &&
tools/clang/lib/CodeGen/CGObjC.cpp
 1474   if (!getContext().hasSameUnqualifiedType(ivarRef.getType(),
tools/clang/lib/Edit/RewriteObjCFoundationAPI.cpp
 1144     if (Ctx.hasSameUnqualifiedType(PointeeType, Ctx.CharTy)) {
tools/clang/lib/Sema/SemaCast.cpp
 1566   if (!Self.Context.hasSameUnqualifiedType(SrcMemPtr->getPointeeType(),
 1832   if (Context.hasSameUnqualifiedType(DestTy, SrcTy)) {
 2634     if (DestRecordTy && Self.Context.hasSameUnqualifiedType(DestType, SrcType)){
tools/clang/lib/Sema/SemaChecking.cpp
 5853   if (!Context.hasSameUnqualifiedType(Arg1Ty, Arg2Ty)) {
 5909     } else if (!Context.hasSameUnqualifiedType(LHSType, RHSType)) {
10677       S.Context.hasSameUnqualifiedType(Constant->getType(), Other->getType()))
10787   if (!S.Context.hasSameUnqualifiedType(T, E->getRHS()->getType()))
11497   if (S.Context.hasSameUnqualifiedType(LHSStrippedType, RHSStrippedType))
tools/clang/lib/Sema/SemaCodeComplete.cpp
 1000       if (SemaRef.Context.hasSameUnqualifiedType(PreferredType, TC))
 5082           else if (!SemaRef.Context.hasSameUnqualifiedType(
 5664           Context.hasSameUnqualifiedType(
 5679           Context.hasSameUnqualifiedType(
 6537     if (!S.Context.hasSameUnqualifiedType((*CurP)->getType(),
 6716           } else if (!Context.hasSameUnqualifiedType(PreferredType,
 7502           !Context.hasSameUnqualifiedType(ReturnType, M->getReturnType()))
 7584       Context.hasSameUnqualifiedType(ReturnType.getNonReferenceType(),
tools/clang/lib/Sema/SemaConcept.cpp
   40   if (!Context.hasSameUnqualifiedType(Type, Context.BoolTy)) {
tools/clang/lib/Sema/SemaDecl.cpp
  650       if (Ty && Context.hasSameUnqualifiedType(QualType(Ty, 1), Base.getType()))
 5287     if (Context.hasSameUnqualifiedType(DefParamTy, DeclParamTy))
 5295     if (Context.hasSameUnqualifiedType(DeclParamBaseTy, DefParamBaseTy) ||
10629     if (Context.hasSameUnqualifiedType(FT->getReturnType(), Context.IntTy))
10695     if (Context.hasSameUnqualifiedType(AT, Expected[i]))
11207       Context.hasSameUnqualifiedType(Type, Context.getAutoDeductType()) &&
14433         !Context.hasSameUnqualifiedType(EnumUnderlyingTy,
tools/clang/lib/Sema/SemaDeclCXX.cpp
 3933     if (SemaRef.Context.hasSameUnqualifiedType(BaseType, Base.getType())) {
 4391     if (Context.hasSameUnqualifiedType(QualType(ClassDecl->getTypeForDecl(),0),
15394   if (!Context.hasSameUnqualifiedType(NewClassTy, OldClassTy)) {
tools/clang/lib/Sema/SemaDeclObjC.cpp
 2352   if (S.Context.hasSameUnqualifiedType(MethodImpl->getReturnType(),
 2437   if (S.Context.hasSameUnqualifiedType(ImplTy, IfaceTy))
tools/clang/lib/Sema/SemaExceptionSpec.cpp
  667   if (Context.hasSameUnqualifiedType(ExceptionType, HandlerType))
tools/clang/lib/Sema/SemaExpr.cpp
 2716   if (Context.hasSameUnqualifiedType(FromRecordType, DestRecordType))
 2767       if (Context.hasSameUnqualifiedType(FromRecordType, DestRecordType))
 2786     if (!Context.hasSameUnqualifiedType(FromRecordType, URecordType)) {
 5292   if (getASTContext().hasSameUnqualifiedType(CAT->getElementType(),
 6277   if (Context.hasSameUnqualifiedType(SrcTy, DestTy))
 6627          !Context.hasSameUnqualifiedType(DestTy, SrcTy))) {
 9227     if (!S.Context.hasSameUnqualifiedType(LHSTy->getPointeeType(), RHSTy))
 9361     << (unsigned)!S.Context.hasSameUnqualifiedType(LHS->getType(),
 9746         if (!Context.hasSameUnqualifiedType(lpointee, rpointee)) {
10042   if (S.Context.hasSameUnqualifiedType(LHSStrippedType, RHSStrippedType))
10536     if (!S.Context.hasSameUnqualifiedType(LHSStrippedType, RHSStrippedType)) {
tools/clang/lib/Sema/SemaExprCXX.cpp
  261           Context.hasSameUnqualifiedType(T, SearchType)) {
  397       !Context.hasSameUnqualifiedType(T, SearchType)) {
 1469       S.Context.hasSameUnqualifiedType(
 1475       S.Context.hasSameUnqualifiedType(
 1500           S.Context.hasSameUnqualifiedType(
 4182       if (Context.hasSameUnqualifiedType(ElType, From->getType())) {
 4212       if (Context.hasSameUnqualifiedType(ElType, ToType)) {
 5102     assert(Self.Context.hasSameUnqualifiedType(LhsT, RhsT)
 5464   if (!Context.hasSameUnqualifiedType(Class, LHSType)) {
 6929       if (!Context.hasSameUnqualifiedType(DestructedType, ObjectType)) {
 6934             Context.hasSameUnqualifiedType(DestructedType,
 6991         !Context.hasSameUnqualifiedType(ScopeType, ObjectType)) {
tools/clang/lib/Sema/SemaExprMember.cpp
 1486     assert(S.Context.hasSameUnqualifiedType(BaseType,
tools/clang/lib/Sema/SemaExprObjC.cpp
  516     if (Context.hasSameUnqualifiedType(PointeeType, Context.CharTy)) {
  848         !Context.hasSameUnqualifiedType(PtrT->getPointeeType(), IdT)) {
  965         !Context.hasSameUnqualifiedType(PtrValue->getPointeeType(), IdT)) {
  979         !Context.hasSameUnqualifiedType(PtrKey->getPointeeType(),
  998           err = !Context.hasSameUnqualifiedType(PtrKey->getPointeeType(),
 1503       Context.hasSameUnqualifiedType(destType, MD->getReturnType()))
 1540   if (Context.hasSameUnqualifiedType(
 1544   if (!Context.hasSameUnqualifiedType(Method->getReturnType(),
tools/clang/lib/Sema/SemaInit.cpp
 3859   return Ctx.hasSameUnqualifiedType(ParmT, ClassT);
 4022       S.Context.hasSameUnqualifiedType(UnwrappedArgs[0]->getType(), DestType)) {
 4103     assert(S.Context.hasSameUnqualifiedType(ConvType, DestType) &&
 4307       if (S.Context.hasSameUnqualifiedType(InitType, DestType) ||
 4387         !S.Context.hasSameUnqualifiedType(E->getType(), DestType) &&
 5281         !S.Context.hasSameUnqualifiedType(ConvType, DestType))
 5724         S.Context.hasSameUnqualifiedType(Initializer->getType(),
 5819          (Context.hasSameUnqualifiedType(SourceType, DestType) ||
 5853       if (Context.hasSameUnqualifiedType(SourceType, Atomic->getValueType()) ||
 6230       S.Context.hasSameUnqualifiedType(
 7629     if (!S.Context.hasSameUnqualifiedType(DestType, SourceType)) {
tools/clang/lib/Sema/SemaLookup.cpp
 3418           if (!Context.hasSameUnqualifiedType(ArgTys[ArgIdx], ParamTy)) {
tools/clang/lib/Sema/SemaObjCProperty.cpp
 2361         !Context.hasSameUnqualifiedType(
tools/clang/lib/Sema/SemaOpenMP.cpp
 6352     if (!SemaRef.Context.hasSameUnqualifiedType(CondExpr.get()->getType(),
tools/clang/lib/Sema/SemaOverload.cpp
  865          !Ctx.hasSameUnqualifiedType(FD->getParamDecl(0)->getType(),
 1398       (S.Context.hasSameUnqualifiedType(FromType, ToType) ||
 1412     if (!S.Context.hasSameUnqualifiedType(FromType, ToType))
 1479   if (Context.hasSameUnqualifiedType(FromType, ToType))
 1584   if (S.Context.hasSameUnqualifiedType(FromType, ToType))
 1664       if (!S.Context.hasSameUnqualifiedType(
 1776   if (S.Context.hasSameUnqualifiedType(FromType, ToType)) {
 2053       return Context.hasSameUnqualifiedType(Underlying, ToType) ||
 2060       return Context.hasSameUnqualifiedType(
 2103         return Context.hasSameUnqualifiedType(ToType, PromoteTypes[Idx]);
 2354   if (Context.hasSameUnqualifiedType(FromPointeeType, ToPointeeType))
 2403       !Context.hasSameUnqualifiedType(FromPointeeType, ToPointeeType) &&
 2457     if (Context.hasSameUnqualifiedType(ToObjCPtr->getPointeeType(),
 2622       Context.hasSameUnqualifiedType(FromType, ToType))
 2930     if (Context.hasSameUnqualifiedType(From->getType(), Context.BoolTy))
 2944           !Context.hasSameUnqualifiedType(FromPointeeType, ToPointeeType)) {
 3029   if (!Context.hasSameUnqualifiedType(FromClass, ToClass) &&
 3211   return UnwrappedAnyPointer && Context.hasSameUnqualifiedType(FromType,ToType);
 3249     if (Context.hasSameUnqualifiedType(Type, FirstArg.getNonReferenceType()))
 3355     if (S.Context.hasSameUnqualifiedType(ToType, From->getType()) ||
 4120     if (S.Context.hasSameUnqualifiedType(T1, T2))
 4285       if (S.Context.hasSameUnqualifiedType(ToType1, ToType2) &&
 4333     if (S.Context.hasSameUnqualifiedType(FromType1, FromType2) &&
 4334         !S.Context.hasSameUnqualifiedType(ToType1, ToType2)) {
 4345     if (!S.Context.hasSameUnqualifiedType(FromType1, FromType2) &&
 4346         S.Context.hasSameUnqualifiedType(ToType1, ToType2)) {
 4900       if (S.Context.hasSameUnqualifiedType(InitType, ToType) ||
 6058     if (Context.hasSameUnqualifiedType(T1, ArgType))
 6067     if (Context.hasSameUnqualifiedType(T2, ArgType))
 6165         (Context.hasSameUnqualifiedType(ClassType, Args[0]->getType()) ||
 6187       if ((Context.hasSameUnqualifiedType(P, C) || IsDerivedFrom(Loc, P, C)) &&
 6188           (Context.hasSameUnqualifiedType(D, P) || IsDerivedFrom(Loc, D, P))) {
 7016   if (S.Context.hasSameUnqualifiedType(ConvType, ToNonRefType))
 7065       !Context.hasSameUnqualifiedType(Conversion->getConversionType(), ToType))
11375     return Context.hasSameUnqualifiedType(TargetFunctionType, FD->getType()) ||
tools/clang/lib/Sema/SemaStmt.cpp
  803           S.Context.hasSameUnqualifiedType(EnumType, VarType))
  838   if (S.Context.hasSameUnqualifiedType(CondType, CaseType))
 1266     if (!Context.hasSameUnqualifiedType(SrcType, DstType) &&
 2992         !Context.hasSameUnqualifiedType(ReturnType, VDType))
 3080         if (!S.Context.hasSameUnqualifiedType(RRefType->getPointeeType(),
tools/clang/lib/Sema/SemaTemplate.cpp
 2565       if (Context.hasSameUnqualifiedType(T, QualType(CurType, 0)))
 5736   } else if (Context.hasSameUnqualifiedType(Arg, Context.OverloadTy)) {
 5826     if (S.Context.hasSameUnqualifiedType(Arg->getType(), ParamType) ||
 5897     if (!S.Context.hasSameUnqualifiedType(ArgType,
 6112       if (!S.Context.hasSameUnqualifiedType(Func->getType(),
 6151         if (!S.Context.hasSameUnqualifiedType(Var->getType(),
 6175         if (!S.Context.hasSameUnqualifiedType(ArgType, ParamType)) {
 6289   } else if (!S.Context.hasSameUnqualifiedType(
 7027     if (!Context.hasSameUnqualifiedType(ParamType->getPointeeType(), T) &&
 9588         if (Context.hasSameUnqualifiedType(Method->getType(), Adjusted)) {
tools/clang/lib/Sema/SemaTemplateDeduction.cpp
 1249     if (ParamRef && ArgRef && S.Context.hasSameUnqualifiedType(Param, Arg)) {
 3178   if (Context.hasSameUnqualifiedType(A, DeducedA))
 3264   if (Context.hasSameUnqualifiedType(A, DeducedA))
tools/clang/lib/StaticAnalyzer/Core/RegionStore.cpp
 1608     if (!SVB.getContext().hasSameUnqualifiedType(RegionTy, SourceRegionTy))
 1685     if (!Ctx.hasSameUnqualifiedType(T, R->getElementType()))
tools/clang/lib/StaticAnalyzer/Core/SimpleSValBuilder.cpp
  704                    getContext().hasSameUnqualifiedType(symIntExpr->getType(),
tools/clang/tools/extra/clang-tidy/bugprone/VirtualNearMissCheck.cpp
   82   if (!Context->hasSameUnqualifiedType(DTy, BTy)) {
tools/clang/tools/extra/clang-tidy/modernize/LoopConvertCheck.cpp
  544         !Context->hasSameUnqualifiedType(AliasVarType, Descriptor.ElemType))
  794       if (!Context->hasSameUnqualifiedType(
tools/clang/tools/extra/clang-tidy/modernize/LoopConvertUtils.cpp
  375         !Context->hasSameUnqualifiedType(DeclarationType, InitType))
tools/clang/tools/extra/clang-tidy/modernize/UseAutoCheck.cpp
  409     if (!Context->hasSameUnqualifiedType(V->getType(), GetType(Expr)))