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

Declarations

tools/clang/include/clang/AST/Type.h
  902   inline QualType getUnqualifiedType() const;

References

tools/clang/include/clang/AST/ASTContext.h
 1983     return getQualifiedType(type.getUnqualifiedType(), Qs);
tools/clang/include/clang/AST/Decl.h
 3561     return IntegerType.get<TypeSourceInfo*>()->getType().getUnqualifiedType();
tools/clang/include/clang/AST/DeclCXX.h
  247     return BaseTypeInfo->getType().getUnqualifiedType();
tools/clang/include/clang/AST/Type.h
 6324   if (getUnqualifiedType()->isVoidType())
tools/clang/include/clang/Sema/Initialization.h
  264       Context.getVariableArrayDecayedType(Type.getUnqualifiedType());
tools/clang/lib/ARCMigrate/ObjCMT.cpp
  523       RT = Context.getQualifiedType(CanResultTy.getUnqualifiedType(), Qs);
 1072   QualType UPointeeT = PT->getPointeeType().getUnqualifiedType();
 1375   if (PT->getPointeeType().getUnqualifiedType()->isVoidType())
tools/clang/lib/ARCMigrate/TransProperties.cpp
  347     QualType ty = props[0].PropD->getType().getUnqualifiedType();
  351       assert(ty == I->PropD->getType().getUnqualifiedType());
tools/clang/lib/AST/ASTContext.cpp
 5610   return T.getUnqualifiedType();
 5623   return T.getUnqualifiedType();
 8613         QualType ET = I->getType().getUnqualifiedType();
 8672     retType = retType.getUnqualifiedType();
 8748       QualType lParamType = lproto->getParamType(i).getUnqualifiedType();
 8749       QualType rParamType = rproto->getParamType(i).getUnqualifiedType();
 8756         paramType = paramType.getUnqualifiedType();
 8760         lParamType = lParamType.getUnqualifiedType();
 8761         rParamType = rParamType.getUnqualifiedType();
 8856     LHS = LHS.getUnqualifiedType();
 8857     RHS = RHS.getUnqualifiedType();
 8975       LHSPointee = LHSPointee.getUnqualifiedType();
 8976       RHSPointee = RHSPointee.getUnqualifiedType();
 8994       LHSPointee = LHSPointee.getUnqualifiedType();
 8995       RHSPointee = RHSPointee.getUnqualifiedType();
 9027       LHSValue = LHSValue.getUnqualifiedType();
 9028       RHSValue = RHSValue.getUnqualifiedType();
 9050       LHSElem = LHSElem.getUnqualifiedType();
 9051       RHSElem = RHSElem.getUnqualifiedType();
tools/clang/lib/AST/ExprConstant.cpp
 5241         << E->getType().getUnqualifiedType();
tools/clang/lib/AST/MicrosoftMangle.cpp
 2267         ResultType = ResultType.getUnqualifiedType();
tools/clang/lib/AST/Type.cpp
 1438     return AT->getValueType().getUnqualifiedType();
 1439   return getUnqualifiedType();
 2925     return getUnqualifiedType();
tools/clang/lib/Analysis/CFG.cpp
 5484     T.getUnqualifiedType().print(OS, PrintingPolicy(Helper.getLangOpts()));
tools/clang/lib/Analysis/CocoaConventions.cpp
   42   if (!PT || !PT->getPointeeType().getUnqualifiedType()->isVoidType())
tools/clang/lib/CodeGen/CGAtomic.cpp
  875   QualType RValTy = E->getType().getUnqualifiedType();
tools/clang/lib/CodeGen/CGBuiltin.cpp
 1449         FD->getType().getUnqualifiedType().getCanonicalType();
tools/clang/lib/CodeGen/CGCall.cpp
 2235       QualType RetTy = FD->getReturnType().getUnqualifiedType();
tools/clang/lib/CodeGen/CGDecl.cpp
 1324       Dimensions.emplace_back(C, Type1D.getUnqualifiedType());
 1336                               Type1D.getUnqualifiedType());
tools/clang/lib/CodeGen/CGException.cpp
  475       QualType ExceptType = Ty.getNonReferenceType().getUnqualifiedType();
tools/clang/lib/CodeGen/CGExpr.cpp
  801     CGM.getCXXABI().getMangleContext().mangleCXXRTTI(Ty.getUnqualifiedType(),
  840         CGM.GetAddrOfRTTIDescriptor(Ty.getUnqualifiedType()),
tools/clang/lib/CodeGen/CGObjC.cpp
   82   QualType ArgQT = ArgDecl->getType().getUnqualifiedType();
  102     QualType EncodingQT = EncodingDecl->getType().getUnqualifiedType();
  200   QualType ArgQT = argDecl->getType().getUnqualifiedType();
  204     ArgQT = argDecl->getType().getUnqualifiedType();
  208   ArgQT = argDecl->getType().getUnqualifiedType();
 1448                            argType.getUnqualifiedType(), CK_LValueToRValue,
tools/clang/lib/CodeGen/CodeGenModule.cpp
 1308             pointeeTy.getUnqualifiedType().getAsString(Policy) + "*";
 1318             pointeeTy.getUnqualifiedType().getCanonicalType().getAsString(
 1355           typeName = ty.getUnqualifiedType().getAsString(Policy);
 1371               ty.getUnqualifiedType().getCanonicalType().getAsString(Policy);
 2272     Ty = Ty.getCanonicalType().getUnqualifiedType();
tools/clang/lib/CodeGen/ItaniumCXXABI.cpp
 1406       CGF.CGM.GetAddrOfRTTIDescriptor(SrcRecordTy.getUnqualifiedType());
 1408       CGF.CGM.GetAddrOfRTTIDescriptor(DestRecordTy.getUnqualifiedType());
 3743   Type = Type.getUnqualifiedType();
tools/clang/lib/CodeGen/MicrosoftCXXABI.cpp
  972       CGF.CGM.GetAddrOfRTTIDescriptor(SrcRecordTy.getUnqualifiedType());
  974       CGF.CGM.GetAddrOfRTTIDescriptor(DestRecordTy.getUnqualifiedType());
 3767     T = Context.getMemberPointerType(PointeeType.getUnqualifiedType(),
 3773     T = Context.getPointerType(PointeeType.getUnqualifiedType());
tools/clang/lib/Edit/RewriteObjCFoundationAPI.cpp
  114   if (!Ctx.isObjCIdType(Receiver->getType().getUnqualifiedType()))
tools/clang/lib/Frontend/ASTUnit.cpp
  407           = Ctx->getCanonicalType(UsageType.getUnqualifiedType());
 2093                                Context.getPreferredType().getUnqualifiedType());
tools/clang/lib/Sema/SemaCast.cpp
  750       << DestPointee.getUnqualifiedType() << DestRange;
  795       << SrcPointee.getUnqualifiedType() << SrcExpr.get()->getSourceRange();
  841       << SrcPointee.getUnqualifiedType() << SrcExpr.get()->getSourceRange();
 1311     FromType = FromType.getUnqualifiedType();
 1312     ToType = ToType.getUnqualifiedType();
 1486       << QualType(SrcType).getUnqualifiedType()
 1487       << QualType(DestType).getUnqualifiedType()
 1866       if (!DT.getUnqualifiedType()->isVoidType())
 2556   if (DestType.getUnqualifiedType()->isVoidType())
tools/clang/lib/Sema/SemaChecking.cpp
  534   if (NDRangeArg->getType().getUnqualifiedType().getAsString() != "ndrange_t") {
  660   if (Arg2->getType().getUnqualifiedType().getAsString() != "ndrange_t") {
  992       RT.getUnqualifiedType(), Qual)));
 1771   QualType AddrType = ValType.getUnqualifiedType().withVolatile();
 4887               Context.getAddrSpaceQualType(ValType.getUnqualifiedType(), AS));
 5085   ValType = ValType.getUnqualifiedType();
 5430   ValType = ValType.getUnqualifiedType();
11200                               << E->getType() << T.getUnqualifiedType()
11205         << E->getType() << T.getUnqualifiedType() << PrettySourceValue
14341   T1 = T1.getCanonicalType().getUnqualifiedType();
14342   T2 = T2.getCanonicalType().getUnqualifiedType();
tools/clang/lib/Sema/SemaCodeComplete.cpp
 2797     QualType Type = Param->getType().getUnqualifiedType();
 7355           Property->getType().getNonReferenceType().getUnqualifiedType();
tools/clang/lib/Sema/SemaDecl.cpp
11370           << 0 << 0 << QT.getUnqualifiedType() << "";
11435           << 0 << 1 << QT.getUnqualifiedType() << "";
11501           << 0 << 2 << QT.getUnqualifiedType() << "";
15187             EnumUnderlyingTy = TI->getType().getUnqualifiedType();
tools/clang/lib/Sema/SemaDeclCXX.cpp
 4543       SemaRef.Context.getQualifiedType(BaseSpec->getType().getUnqualifiedType(),
 7952         << Kind << SubType.getUnqualifiedType();
 7957         << Kind << SubType.getUnqualifiedType() << CSM << SubType;
 7961           << Kind << SubType.getUnqualifiedType() << CSM;
 7964           << Kind << SubType.getUnqualifiedType() << CSM;
 7970           << Kind << SubType.getUnqualifiedType() << CSM;
 9766     ArgType = RT->getPointeeType().getUnqualifiedType();
12514     QualType BaseType = Base.getType().getUnqualifiedType();
12881     QualType BaseType = Base.getType().getUnqualifiedType();
14059     QualType ParamType = Param->getType().getUnqualifiedType();
14074       if (!(Context.hasSameType(InnerType.getUnqualifiedType(),
14105     QualType FirstParamType = (*Param)->getType().getUnqualifiedType();
14127     QualType InnerType = PointeeType.getUnqualifiedType();
14146     QualType SecondParamType = (*Param)->getType().getUnqualifiedType();
tools/clang/lib/Sema/SemaDeclObjC.cpp
  750              Context.getTrivialTypeSourceInfo(typeBound.getUnqualifiedType());
tools/clang/lib/Sema/SemaExpr.cpp
  621     T = T.getUnqualifiedType();
  647     T = Atomic->getValueType().getUnqualifiedType();
 3056       type = type.getUnqualifiedType();
 6995   lhptee = S.Context.getQualifiedType(lhptee.getUnqualifiedType(), lhQual);
 6996   rhptee = S.Context.getQualifiedType(rhptee.getUnqualifiedType(), rhQual);
 7033           .getQualifiedType(CompositeTy.getUnqualifiedType(), CompositeQuals)
 7216     std::string EleTyName = ResTy.getUnqualifiedType().getAsString();
 7405         return LHSTy.getUnqualifiedType();
 8074             S.Context.getQualifiedType(LHSType.getUnqualifiedType(), LQuals),
 8075             S.Context.getQualifiedType(RHSType.getUnqualifiedType(), RQuals)))
 8574         RHS = PerformImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(),
 8578             TryImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(),
 8586         RHS = PerformImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(),
 8845   QualType IntTy = Int->get()->getType().getUnqualifiedType();
 8883   QualType IntTy = Int->get()->getType().getUnqualifiedType();
 8927   QualType ScalarTy = Scalar->get()->getType().getUnqualifiedType();
 8928   QualType VectorTy = Vector->get()->getType().getUnqualifiedType();
 9015   QualType LHSType = LHS.get()->getType().getUnqualifiedType();
 9016   QualType RHSType = RHS.get()->getType().getUnqualifiedType();
 9772             << rpointee.getUnqualifiedType()
10802     if (Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(),
10803                                    RCanPointeeTy.getUnqualifiedType())) {
11893         << LHSType.getUnqualifiedType();
12004           ? LHSType : LHSType.getUnqualifiedType());
12199     return ResType.getUnqualifiedType();
13851           E->getBeginLoc(), E->getType().getUnqualifiedType()),
14680       SrcType = SrcType.getUnqualifiedType();
14681       DstType = DstType.getUnqualifiedType();
15900       DeclRefType = DeclRefType.getUnqualifiedType();
16162             DeclRefType = DeclRefType.getUnqualifiedType();
tools/clang/lib/Sema/SemaExprCXX.cpp
 2207       << AllocType.getUnqualifiedType()
 2783               Context.getCanonicalType(P->getType().getUnqualifiedType()));
 3312              << Pointee.getUnqualifiedType()
 3427             Context.getQualifiedType(Pointee.getUnqualifiedType(), Qs));
 3955       FromType = FromAtomic->getValueType().getUnqualifiedType();
 4236     From = ImpCastExprToType(From, ToType.getUnqualifiedType(), Kind,
tools/clang/lib/Sema/SemaInit.cpp
 4166       UnqualifiedSourceType = SourceType.getUnqualifiedType();
 4468   QualType T1 = cv1T1.getUnqualifiedType();
 4470   QualType T2 = cv2T2.getUnqualifiedType();
 5237                                    DestType.getUnqualifiedType(),
tools/clang/lib/Sema/SemaLambda.cpp
  763         (RetE ? RetE->getType() : Context.VoidTy).getUnqualifiedType();
tools/clang/lib/Sema/SemaObjCProperty.cpp
 2459           property->getType().getUnqualifiedType().getAtomicUnqualifiedType();
tools/clang/lib/Sema/SemaOpenMP.cpp
 2176                 *this, DE->getExprLoc(), Type.getUnqualifiedType(),
 4798                              .getUnqualifiedType()
 5046         TryImplicitConversion(VariantRef, FnPtrType.getUnqualifiedType(),
 5059         VariantRef, FnPtrType.getUnqualifiedType(), AA_Converting);
12120     Type = Type.getUnqualifiedType();
12129         *this, VDPrivate, RefExpr->getType().getUnqualifiedType(), ELoc);
12370     Type = Type.getUnqualifiedType();
12388       ElemType = ElemType.getUnqualifiedType();
12421         *this, VDPrivate, RefExpr->getType().getUnqualifiedType(),
12549                                   Type.getUnqualifiedType(), ".lastprivate.src",
12552         buildDeclRefExpr(*this, SrcVD, Type.getUnqualifiedType(), ELoc);
12910                 VD->getType().getUnqualifiedType()))) {
13340     Type = Type.getNonLValueExprType(Context).getUnqualifiedType();
13776   Type = Type.getUnqualifiedType().getCanonicalType();
13838     Type = Type.getNonReferenceType().getUnqualifiedType().getCanonicalType();
13982                            DE->getType().getUnqualifiedType(), DE->getExprLoc(),
14056     QType = QType.getNonReferenceType().getUnqualifiedType().getCanonicalType();
14165         buildVarDecl(*this, DE->getBeginLoc(), ElemType.getUnqualifiedType(),
14168         *this, SrcVD, ElemType.getUnqualifiedType(), DE->getExprLoc());
14277                .getUnqualifiedType();
15208               VD->getType().getUnqualifiedType()))) {
16407     Type = Type.getNonReferenceType().getUnqualifiedType();
16428         *this, VDPrivate, RefExpr->getType().getUnqualifiedType(), ELoc);
tools/clang/lib/Sema/SemaOverload.cpp
 1302         = S.Context.getCanonicalType(From->getType().getUnqualifiedType());
 1725     FromType = FromType.getUnqualifiedType();
 1783     FromType = ToType.getUnqualifiedType();
 1787     FromType = ToType.getUnqualifiedType();
 1791     FromType = ToType.getUnqualifiedType();
 1805     FromType = ToType.getUnqualifiedType();
 1809     FromType = ToType.getUnqualifiedType();
 1814     FromType = ToType.getUnqualifiedType();
 1832     FromType = ToType.getUnqualifiedType();
 1839     FromType = ToType.getUnqualifiedType();
 1850     FromType = FromType.getUnqualifiedType();
 1857     FromType = ToType.getUnqualifiedType();
 1862     FromType = ToType.getUnqualifiedType();
 2225     return ToType.getUnqualifiedType();
 2239       return ToType.getUnqualifiedType();
 2433   return Context.getQualifiedType(T.getUnqualifiedType(), Qs);
 2659   FromPointee = FromPointee.getUnqualifiedType();
 2662   ToPointee = ToPointee.getUnqualifiedType();
 2727        LHS = LHS.getUnqualifiedType();
 2901     if (!Context.hasSameType(O->getUnqualifiedType(),
 2902                              N->getUnqualifiedType())) {
 3133   if (FromType.getUnqualifiedType() == ToType.getUnqualifiedType())
 3133   if (FromType.getUnqualifiedType() == ToType.getUnqualifiedType())
 3154     if (ToType.getUnqualifiedType()->isVoidType())
 3909     QualType FromPointee1 = FromType1->getPointeeType().getUnqualifiedType();
 3910     QualType FromPointee2 = FromType2->getPointeeType().getUnqualifiedType();
 4183         FromType1->castAs<PointerType>()->getPointeeType().getUnqualifiedType();
 4185         ToType1->castAs<PointerType>()->getPointeeType().getUnqualifiedType();
 4187         FromType2->castAs<PointerType>()->getPointeeType().getUnqualifiedType();
 4189         ToType2->castAs<PointerType>()->getPointeeType().getUnqualifiedType();
 4308     QualType FromPointee1 = QualType(FromPointeeType1, 0).getUnqualifiedType();
 4309     QualType ToPointee1 = QualType(ToPointeeType1, 0).getUnqualifiedType();
 4310     QualType FromPointee2 = QualType(FromPointeeType2, 0).getUnqualifiedType();
 4311     QualType ToPointee2 = QualType(ToPointeeType2, 0).getUnqualifiedType();
 4515                   .getUnqualifiedType(),
 4516               DeclType.getNonReferenceType().getUnqualifiedType(),
 5941             ToType = CurToType.getUnqualifiedType();
 5943                    (CurToType.getUnqualifiedType() != ToType))
 7119     = Context.getCanonicalType(From->getType().getUnqualifiedType());
 8278                                         .getUnqualifiedType();
 8281                                          .getUnqualifiedType();
 8851         C2 = C2.getUnqualifiedType();
13342         << fnType.getUnqualifiedType()
tools/clang/lib/Sema/SemaStmt.cpp
 1284               << DstType.getUnqualifiedType();
 1309                 << DstType.getUnqualifiedType();
 3159                      .getUnqualifiedType()
 3190                        .getUnqualifiedType()
 3291         FnRetType = RetValExp->getType().getUnqualifiedType();
 3973     QT = QT.getUnqualifiedType();
tools/clang/lib/Sema/SemaTemplate.cpp
 1087     return T.getUnqualifiedType();
 1105     return T.getUnqualifiedType();
 6410       << ParamType.getUnqualifiedType();
 6646     ArgType = ArgType.getUnqualifiedType();
 7007                                     ParamType.getUnqualifiedType(), false,
 7009         RefExpr = ImpCastExprToType(RefExpr.get(), ParamType.getUnqualifiedType(), CK_NoOp);
 7013                                  ParamType.getUnqualifiedType()));
tools/clang/lib/Sema/SemaTemplateDeduction.cpp
 1288     Param = Param.getUnqualifiedType();
 1291     Arg = Arg.getUnqualifiedType();
 1404     DeducedType = S.Context.getQualifiedType(DeducedType.getUnqualifiedType(),
 1510         Param = Param.getUnqualifiedType();
 1511         Arg = Arg.getUnqualifiedType();
 3228       A = Context.getQualifiedType(A.getUnqualifiedType(), DeducedAQuals);
 3589     ParamType = ParamType.getUnqualifiedType();
 3637       ArgType = ArgType.getUnqualifiedType();
 4174       A = A.getUnqualifiedType();
 4175       P = P.getUnqualifiedType();
 4197       P = P.getUnqualifiedType();
 4203     A = A.getUnqualifiedType();
tools/clang/lib/Sema/SemaType.cpp
  907     typeArg = typeArg.getUnqualifiedType();
tools/clang/lib/Sema/TreeTransform.h
 4415             Replacement.getUnqualifiedType(), Qs);
 4424             SemaRef.Context.getQualifiedType(Deduced.getUnqualifiedType(), Qs);
tools/clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp
 2037       CE->getType().getUnqualifiedType() != CharPtrTy.getUnqualifiedType())
 2037       CE->getType().getUnqualifiedType() != CharPtrTy.getUnqualifiedType())
tools/clang/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp
  348     if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().VoidTy)
  390     if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().VoidTy)
  432   if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().VoidTy)
  474   if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
  514   if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
  555   if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
  824     if (PT->getPointeeType().getUnqualifiedType() != BR.getContext().CharTy)
tools/clang/lib/StaticAnalyzer/Checkers/NumberObjectConversionChecker.cpp
  132   QualType ObjT = Obj->getType().getUnqualifiedType();
  138         ObjT->getPointeeType().getCanonicalType().getUnqualifiedType());
tools/clang/lib/StaticAnalyzer/Checkers/ObjCPropertyChecker.cpp
   51                                                      .getUnqualifiedType()
tools/clang/tools/extra/clang-tidy/cppcoreguidelines/NarrowingConversionsCheck.cpp
   69   return E.getType().getUnqualifiedType();
tools/clang/tools/extra/clang-tidy/google/AvoidCStyleCastsCheck.cpp
   55   return T1.getUnqualifiedType() == T2.getUnqualifiedType();
   55   return T1.getUnqualifiedType() == T2.getUnqualifiedType();
   77       CastExpr->getTypeAsWritten().getUnqualifiedType();
   79       CastExpr->getSubExprAsWritten()->getType().getUnqualifiedType();
tools/clang/tools/extra/clang-tidy/modernize/LoopConvertCheck.cpp
  619     Type = Descriptor.ElemType.getUnqualifiedType();
tools/clang/tools/extra/clang-tidy/performance/InefficientAlgorithmCheck.cpp
   93         Arg->getType().getUnqualifiedType().getCanonicalType();
   98                                       .getUnqualifiedType()
tools/clang/tools/extra/clang-tidy/readability/StaticAccessedThroughInstanceCheck.cpp
   64           ? BaseExpr->getType()->getPointeeType().getUnqualifiedType()
   65           : BaseExpr->getType().getUnqualifiedType();
tools/clang/tools/libclang/CXType.cpp
  144       QualType UnqualT = T.getUnqualifiedType();
tools/lldb/source/Symbol/ClangASTContext.cpp
  150     return context.hasSameType(m1p.getUnqualifiedType(),
  151                                m2p.getUnqualifiedType());
 1300     type1_qual = type1_qual.getUnqualifiedType();
 1301     type2_qual = type2_qual.getUnqualifiedType();
 2972   return GetQualType(type).getUnqualifiedType()->isCharType();
 4478     qual_type = qual_type.getUnqualifiedType();