Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopFlatten.cpp836 auto *InnerType = FI.InnerInductionPHI->getType(); in CanWidenIV() local
844 if (InnerType != OuterType || in CanWidenIV()
845 InnerType->getScalarSizeInBits() >= MaxLegalSize || in CanWidenIV()
847 InnerType->getScalarSizeInBits() * 2) { in CanWidenIV()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h7657 InnerType) { in AST_MATCHER_P() argument
7658 return InnerType.matches(Node.getDecayedType(), Finder, Builder); in AST_MATCHER_P()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclCXX.cpp16680 QualType InnerType = Ptr->getPointeeType(); in CheckLiteralOperatorDeclaration() local
16683 if (!(Context.hasSameType(InnerType.getUnqualifiedType(), in CheckLiteralOperatorDeclaration()
16685 InnerType.isConstQualified() && !InnerType.isVolatileQualified())) { in CheckLiteralOperatorDeclaration()
16736 QualType InnerType = PointeeType.getUnqualifiedType(); in CheckLiteralOperatorDeclaration() local
16740 if (!(Context.hasSameType(InnerType, Context.CharTy) || in CheckLiteralOperatorDeclaration()
16741 Context.hasSameType(InnerType, Context.WideCharTy) || in CheckLiteralOperatorDeclaration()
16742 Context.hasSameType(InnerType, Context.Char8Ty) || in CheckLiteralOperatorDeclaration()
16743 Context.hasSameType(InnerType, Context.Char16Ty) || in CheckLiteralOperatorDeclaration()
16744 Context.hasSameType(InnerType, Context.Char32Ty))) { in CheckLiteralOperatorDeclaration()
H A DTreeTransform.h1086 QualType RebuildParenType(QualType InnerType) { in RebuildParenType() argument
1087 return SemaRef.BuildParenType(InnerType); in RebuildParenType()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DType.h2873 ParenType(QualType InnerType, QualType CanonType)
2874 : Type(Paren, CanonType, InnerType->getDependence()), Inner(InnerType) {}
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp5044 ASTContext::getParenType(QualType InnerType) const { in getParenType()
5046 ParenType::Profile(ID, InnerType); in getParenType()
5053 QualType Canon = InnerType; in getParenType()
5055 Canon = getCanonicalType(InnerType); in getParenType()
5061 T = new (*this, alignof(ParenType)) ParenType(InnerType, Canon); in getParenType()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp1049 EVT InnerType = cast<VTSDNode>(Node->getOperand(1))->getVT(); in LegalizeOp() local
1050 Action = TLI.getOperationAction(Node->getOpcode(), InnerType); in LegalizeOp()