Searched refs:InnerType (Results 1 – 7 of 7) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | LoopFlatten.cpp | 849 auto *InnerType = FI.InnerInductionPHI->getType(); in CanWidenIV() local 857 if (InnerType != OuterType || in CanWidenIV() 858 InnerType->getScalarSizeInBits() >= MaxLegalSize || in CanWidenIV() 860 InnerType->getScalarSizeInBits() * 2) { in CanWidenIV()
|
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/ |
H A D | ASTMatchers.h | 7687 InnerType) { in AST_MATCHER_P() argument 7688 return InnerType.matches(Node.getDecayedType(), Finder, Builder); in AST_MATCHER_P()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaDeclCXX.cpp | 16552 QualType InnerType = Ptr->getPointeeType(); in CheckLiteralOperatorDeclaration() local 16555 if (!(Context.hasSameType(InnerType.getUnqualifiedType(), in CheckLiteralOperatorDeclaration() 16557 InnerType.isConstQualified() && !InnerType.isVolatileQualified())) { in CheckLiteralOperatorDeclaration() 16608 QualType InnerType = PointeeType.getUnqualifiedType(); in CheckLiteralOperatorDeclaration() local 16612 if (!(Context.hasSameType(InnerType, Context.CharTy) || in CheckLiteralOperatorDeclaration() 16613 Context.hasSameType(InnerType, Context.WideCharTy) || in CheckLiteralOperatorDeclaration() 16614 Context.hasSameType(InnerType, Context.Char8Ty) || in CheckLiteralOperatorDeclaration() 16615 Context.hasSameType(InnerType, Context.Char16Ty) || in CheckLiteralOperatorDeclaration() 16616 Context.hasSameType(InnerType, Contex in CheckLiteralOperatorDeclaration() [all...] |
H A D | TreeTransform.h | 1107 QualType RebuildParenType(QualType InnerType) { in RebuildParenType() argument 1108 return SemaRef.BuildParenType(InnerType); in RebuildParenType()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | Type.h | 3140 ParenType(QualType InnerType, QualType CanonType) 3141 : Type(Paren, CanonType, InnerType->getDependence()), Inner(InnerType) {}
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | ASTContext.cpp | 5452 ASTContext::getParenType(QualType InnerType) const { in getParenType() 5454 ParenType::Profile(ID, InnerType); in getParenType() 5461 QualType Canon = InnerType; in getParenType() 5463 Canon = getCanonicalType(InnerType); in getParenType() 5469 T = new (*this, alignof(ParenType)) ParenType(InnerType, Canon); in getParenType()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | LegalizeDAG.cpp | 1029 EVT InnerType = cast<VTSDNode>(Node->getOperand(1))->getVT(); in LegalizeOp() local 1030 Action = TLI.getOperationAction(Node->getOpcode(), InnerType); in LegalizeOp()
|