Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopFlatten.cpp849 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/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h2303 using InnerType = std::conditional_t<
2313 matcher_(MatcherCast<InnerType>(matcher)) {}
2343 InnerType result =
2356 const Matcher<InnerType> matcher_;
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h7736 InnerType) { in AST_MATCHER_P() argument
7737 return InnerType.matches(Node.getDecayedType(), Finder, Builder); in AST_MATCHER_P()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclCXX.cpp17028 QualType InnerType = Ptr->getPointeeType(); in CheckLiteralOperatorDeclaration() local
17031 if (!(Context.hasSameType(InnerType.getUnqualifiedType(), in CheckLiteralOperatorDeclaration()
17033 InnerType.isConstQualified() && !InnerType.isVolatileQualified())) { in CheckLiteralOperatorDeclaration()
17084 QualType InnerType = PointeeType.getUnqualifiedType(); in CheckLiteralOperatorDeclaration() local
17088 if (!(Context.hasSameType(InnerType, Context.CharTy) || in CheckLiteralOperatorDeclaration()
17089 Context.hasSameType(InnerType, Context.WideCharTy) || in CheckLiteralOperatorDeclaration()
17090 Context.hasSameType(InnerType, Context.Char8Ty) || in CheckLiteralOperatorDeclaration()
17091 Context.hasSameType(InnerType, Context.Char16Ty) || in CheckLiteralOperatorDeclaration()
17092 Context.hasSameType(InnerType, Context.Char32Ty))) { in CheckLiteralOperatorDeclaration()
H A DTreeTransform.h1112 QualType RebuildParenType(QualType InnerType) { in RebuildParenType() argument
1113 return SemaRef.BuildParenType(InnerType); in RebuildParenType()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DType.h3235 ParenType(QualType InnerType, QualType CanonType)
3236 : Type(Paren, CanonType, InnerType->getDependence()), Inner(InnerType) {}
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp5842 ASTContext::getParenType(QualType InnerType) const { in getParenType()
5844 ParenType::Profile(ID, InnerType); in getParenType()
5851 QualType Canon = InnerType; in getParenType()
5853 Canon = getCanonicalType(InnerType); in getParenType()
5859 T = new (*this, alignof(ParenType)) ParenType(InnerType, Canon); in getParenType()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp1059 EVT InnerType = cast<VTSDNode>(Node->getOperand(1))->getVT(); in LegalizeOp() local
1060 Action = TLI.getOperationAction(Node->getOpcode(), InnerType); in LegalizeOp()