Home
last modified time | relevance | path

Searched refs:InnerType (Results 1 – 11 of 11) sorted by relevance

/llvm-project-15.0.7/clang/test/SemaObjCXX/
H A Dcrash.mm32 typedef int InnerType; field
36 typedef int InnerType;
41 @property (nonatomic) (OuterType::InnerType) invalidTypeParens;
48 @property (nonatomic) (ns::InnerType) invalidTypeParens2;
55 @property (nonatomic) int OuterType::InnerType; // expected-error {{property requires fields to be … property
57 @property (nonatomic) int OuterType::InnerType foo; // expected-error {{property requires fields to…
/llvm-project-15.0.7/clang/test/SemaTemplate/
H A Dms-sizeof-missing-typename.cpp34 x1 = sizeof(typename T::/*template*/ InnerTemplate<sizeof(/*typename*/ T::InnerType)>),
36 x2 = sizeof(typename T::template InnerTemplate<sizeof(/*typename*/ T::InnerType)>),
46 typedef double InnerType; typedef
H A Dms-lookup-template-base-classes.cpp367 template <typename U> struct B { typedef U InnerType; }; typedef
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/cppcoreguidelines/
H A DProTypeVarargCheck.cpp113 ast_matchers::internal::Matcher<QualType>, InnerType) { in AST_MATCHER_P() argument
114 return InnerType.matches(Node.getOriginalType(), Finder, Builder); in AST_MATCHER_P()
/llvm-project-15.0.7/llvm/lib/Transforms/Scalar/
H A DLoopFlatten.cpp786 auto *InnerType = FI.InnerInductionPHI->getType(); in CanWidenIV() local
794 if (InnerType != OuterType || in CanWidenIV()
795 InnerType->getScalarSizeInBits() >= MaxLegalSize || in CanWidenIV()
797 InnerType->getScalarSizeInBits() * 2) { in CanWidenIV()
/llvm-project-15.0.7/clang/include/clang/ASTMatchers/
H A DASTMatchers.h7384 InnerType) { in AST_MATCHER_P() argument
7385 return InnerType.matches(Node.getDecayedType(), Finder, Builder); in AST_MATCHER_P()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaDeclCXX.cpp16152 QualType InnerType = Ptr->getPointeeType(); in CheckLiteralOperatorDeclaration() local
16155 if (!(Context.hasSameType(InnerType.getUnqualifiedType(), in CheckLiteralOperatorDeclaration()
16157 InnerType.isConstQualified() && !InnerType.isVolatileQualified())) { in CheckLiteralOperatorDeclaration()
16208 QualType InnerType = PointeeType.getUnqualifiedType(); in CheckLiteralOperatorDeclaration() local
16212 if (!(Context.hasSameType(InnerType, Context.CharTy) || in CheckLiteralOperatorDeclaration()
16213 Context.hasSameType(InnerType, Context.WideCharTy) || in CheckLiteralOperatorDeclaration()
16214 Context.hasSameType(InnerType, Context.Char8Ty) || in CheckLiteralOperatorDeclaration()
16215 Context.hasSameType(InnerType, Context.Char16Ty) || in CheckLiteralOperatorDeclaration()
16216 Context.hasSameType(InnerType, Context.Char32Ty))) { in CheckLiteralOperatorDeclaration()
H A DTreeTransform.h1020 QualType RebuildParenType(QualType InnerType) { in RebuildParenType() argument
1021 return SemaRef.BuildParenType(InnerType); in RebuildParenType()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DType.h2691 ParenType(QualType InnerType, QualType CanonType)
2692 : Type(Paren, CanonType, InnerType->getDependence()), Inner(InnerType) {}
/llvm-project-15.0.7/clang/lib/AST/
H A DASTContext.cpp5007 ASTContext::getParenType(QualType InnerType) const { in getParenType()
5009 ParenType::Profile(ID, InnerType); in getParenType()
5016 QualType Canon = InnerType; in getParenType()
5018 Canon = getCanonicalType(InnerType); in getParenType()
5024 T = new (*this, TypeAlignment) ParenType(InnerType, Canon); in getParenType()
/llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp1026 EVT InnerType = cast<VTSDNode>(Node->getOperand(1))->getVT(); in LegalizeOp() local
1027 Action = TLI.getOperationAction(Node->getOpcode(), InnerType); in LegalizeOp()