Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DLoopFlatten.cpp813 auto *InnerType = FI.InnerInductionPHI->getType(); in CanWidenIV() local
821 if (InnerType != OuterType || in CanWidenIV()
822 InnerType->getScalarSizeInBits() >= MaxLegalSize || in CanWidenIV()
824 InnerType->getScalarSizeInBits() * 2) { in CanWidenIV()
/openbsd-src/gnu/llvm/clang/include/clang/ASTMatchers/
H A DASTMatchers.h7381 InnerType) { in AST_MATCHER_P() argument
7382 return InnerType.matches(Node.getDecayedType(), Finder, Builder); in AST_MATCHER_P()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaDeclCXX.cpp16221 QualType InnerType = Ptr->getPointeeType(); in CheckLiteralOperatorDeclaration() local
16224 if (!(Context.hasSameType(InnerType.getUnqualifiedType(), in CheckLiteralOperatorDeclaration()
16226 InnerType.isConstQualified() && !InnerType.isVolatileQualified())) { in CheckLiteralOperatorDeclaration()
16277 QualType InnerType = PointeeType.getUnqualifiedType(); in CheckLiteralOperatorDeclaration() local
16281 if (!(Context.hasSameType(InnerType, Context.CharTy) || in CheckLiteralOperatorDeclaration()
16282 Context.hasSameType(InnerType, Context.WideCharTy) || in CheckLiteralOperatorDeclaration()
16283 Context.hasSameType(InnerType, Context.Char8Ty) || in CheckLiteralOperatorDeclaration()
16284 Context.hasSameType(InnerType, Context.Char16Ty) || in CheckLiteralOperatorDeclaration()
16285 Context.hasSameType(InnerType, Context.Char32Ty))) { in CheckLiteralOperatorDeclaration()
H A DTreeTransform.h1065 QualType RebuildParenType(QualType InnerType) { in RebuildParenType() argument
1066 return SemaRef.BuildParenType(InnerType); in RebuildParenType()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DType.h2753 ParenType(QualType InnerType, QualType CanonType)
2754 : Type(Paren, CanonType, InnerType->getDependence()), Inner(InnerType) {}
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DASTContext.cpp5061 ASTContext::getParenType(QualType InnerType) const { in getParenType()
5063 ParenType::Profile(ID, InnerType); in getParenType()
5070 QualType Canon = InnerType; in getParenType()
5072 Canon = getCanonicalType(InnerType); in getParenType()
5078 T = new (*this, TypeAlignment) ParenType(InnerType, Canon); in getParenType()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp1028 EVT InnerType = cast<VTSDNode>(Node->getOperand(1))->getVT(); in LegalizeOp() local
1029 Action = TLI.getOperationAction(Node->getOpcode(), InnerType); in LegalizeOp()