Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopFlatten.cpp592 auto *InnerType = FI.InnerInductionPHI->getType(); in CanWidenIV() local
600 if (InnerType != OuterType || in CanWidenIV()
601 InnerType->getScalarSizeInBits() >= MaxLegalSize || in CanWidenIV()
602 MaxLegalType->getScalarSizeInBits() < InnerType->getScalarSizeInBits() * 2) { in CanWidenIV()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h6993 InnerType) { in AST_MATCHER_P() argument
6994 return InnerType.matches(Node.getDecayedType(), Finder, Builder); in AST_MATCHER_P()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DType.h2613 ParenType(QualType InnerType, QualType CanonType)
2614 : Type(Paren, CanonType, InnerType->getDependence()), Inner(InnerType) {}
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclCXX.cpp15931 QualType InnerType = Ptr->getPointeeType(); in CheckLiteralOperatorDeclaration() local
15934 if (!(Context.hasSameType(InnerType.getUnqualifiedType(), in CheckLiteralOperatorDeclaration()
15936 InnerType.isConstQualified() && !InnerType.isVolatileQualified())) { in CheckLiteralOperatorDeclaration()
15987 QualType InnerType = PointeeType.getUnqualifiedType(); in CheckLiteralOperatorDeclaration() local
15991 if (!(Context.hasSameType(InnerType, Context.CharTy) || in CheckLiteralOperatorDeclaration()
15992 Context.hasSameType(InnerType, Context.WideCharTy) || in CheckLiteralOperatorDeclaration()
15993 Context.hasSameType(InnerType, Context.Char8Ty) || in CheckLiteralOperatorDeclaration()
15994 Context.hasSameType(InnerType, Context.Char16Ty) || in CheckLiteralOperatorDeclaration()
15995 Context.hasSameType(InnerType, Context.Char32Ty))) { in CheckLiteralOperatorDeclaration()
H A DTreeTransform.h1015 QualType RebuildParenType(QualType InnerType) { in RebuildParenType() argument
1016 return SemaRef.BuildParenType(InnerType); in RebuildParenType()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp4847 ASTContext::getParenType(QualType InnerType) const { in getParenType()
4849 ParenType::Profile(ID, InnerType); in getParenType()
4856 QualType Canon = InnerType; in getParenType()
4858 Canon = getCanonicalType(InnerType); in getParenType()
4864 T = new (*this, TypeAlignment) ParenType(InnerType, Canon); in getParenType()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp1027 EVT InnerType = cast<VTSDNode>(Node->getOperand(1))->getVT(); in LegalizeOp() local
1028 Action = TLI.getOperationAction(Node->getOpcode(), InnerType); in LegalizeOp()