Home
last modified time | relevance | path

Searched refs:UsingType (Results 1 – 24 of 24) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTImporterLookupTable.cpp70 } else if (isa<UsingType>(Ty)) { in VisitFriendDecl()
H A DQualTypeNames.cpp453 if (const auto *UT = QT->getAs<UsingType>()) { in getFullyQualifiedType()
H A DASTStructuralEquivalence.cpp1110 if (!IsStructurallyEquivalent(Context, cast<UsingType>(T1)->getFoundDecl(), in IsStructurallyEquivalent()
1111 cast<UsingType>(T2)->getFoundDecl())) in IsStructurallyEquivalent()
1114 cast<UsingType>(T1)->getUnderlyingType(), in IsStructurallyEquivalent()
1115 cast<UsingType>(T2)->getUnderlyingType())) in IsStructurallyEquivalent()
H A DType.cpp582 template <> const UsingType *Type::getAs() const { in getAs()
583 return getAsSugar<UsingType>(this); in getAs()
3873 UsingType::UsingType(const UsingShadowDecl *Found, QualType Underlying, in UsingType() function in UsingType
3882 QualType UsingType::getUnderlyingType() const { in getUnderlyingType()
H A DASTDiagnostic.cpp43 if (const UsingType *UT = dyn_cast<UsingType>(Ty)) { in desugarForDiagnostic()
H A DTypePrinter.cpp1177 void TypePrinter::printUsingBefore(const UsingType *T, raw_ostream &OS) { in printUsingBefore()
1190 void TypePrinter::printUsingAfter(const UsingType *T, raw_ostream &OS) {} in printUsingAfter()
H A DASTContext.cpp2362 return getTypeInfo(cast<UsingType>(T)->desugar().getTypePtr()); in getTypeInfoImpl()
5095 UsingType::Profile(ID, Found, Underlying); in getUsingType()
5098 if (UsingType *T = UsingTypes.FindNodeOrInsertPos(ID, InsertPos)) in getUsingType()
5111 Allocate(UsingType::totalSizeToAlloc<QualType>(!Underlying.isNull()), in getUsingType()
5112 alignof(UsingType)); in getUsingType()
5113 UsingType *NewType = new (Mem) UsingType(Found, Underlying, Canon); in getUsingType()
13690 const auto *UX = cast<UsingType>(X), *UY = cast<UsingType>(Y); in getCommonSugarTypeNode()
H A DJSONNodeDumper.cpp609 void JSONNodeDumper::VisitUsingType(const UsingType *TT) { in VisitUsingType()
H A DTextNodeDumper.cpp1967 void TextNodeDumper::VisitUsingType(const UsingType *T) { in VisitUsingType()
H A DItaniumMangle.cpp2558 return mangleUnresolvedTypeOrSimpleId(cast<UsingType>(Ty)->desugar(), in mangleUnresolvedTypeOrSimpleId()
H A DASTImporter.cpp1429 ExpectedType ASTNodeImporter::VisitUsingType(const UsingType *T) { in VisitUsingType()
3574 std::optional<bool> VisitUsingType(const UsingType *T) { in VisitUsingType()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DTypeNodes.td79 def UsingType : TypeNode<Type>, NeverCanonical;
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DTextNodeDumper.h335 void VisitUsingType(const UsingType *T);
H A DJSONNodeDumper.h223 void VisitUsingType(const UsingType *TT);
H A DType.h2116 friend class UsingType;
2967 template <> const UsingType *Type::getAs() const;
5568 class UsingType final : public Type,
5570 private llvm::TrailingObjects<UsingType, QualType> {
5575 UsingType(const UsingShadowDecl *Found, QualType Underlying, QualType Canon);
H A DTypeProperties.td402 let Class = UsingType in {
H A DRecursiveASTVisitor.h1087 DEF_TRAVERSE_TYPE(UsingType, {})
1377 DEF_TRAVERSE_TYPELOC(UsingType, {})
H A DTypeLoc.h682 UsingTypeLoc, UsingType> {
H A DASTContext.h233 mutable llvm::FoldingSet<UsingType> UsingTypes;
/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h4282 UsingType), in AST_POLYMORPHIC_MATCHER_P() argument
7269 UsingType));
7619 extern const AstTypeMatcher<UsingType> usingType;
H A DASTMatchersInternal.h1082 if (const auto *S = dyn_cast<UsingType>(&Node)) {
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDebugInfo.cpp3614 T = cast<UsingType>(T)->getUnderlyingType(); in UnwrapTypeForDebugInfo()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h6493 const UsingType *T = TL.getTypePtr(); in TransformUsingType()
H A DSemaExpr.cpp4474 T = cast<UsingType>(Ty)->desugar(); in captureVariablyModifiedType()