Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DTypeNodes.td78 def UsingType : TypeNode<Type>, NeverCanonical;
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DQualTypeNames.cpp452 if (const auto *UT = QT->getAs<UsingType>()) { in getFullyQualifiedType()
H A DASTStructuralEquivalence.cpp1008 if (!IsStructurallyEquivalent(Context, cast<UsingType>(T1)->getFoundDecl(), in IsStructurallyEquivalent()
1009 cast<UsingType>(T2)->getFoundDecl())) in IsStructurallyEquivalent()
1012 cast<UsingType>(T1)->getUnderlyingType(), in IsStructurallyEquivalent()
1013 cast<UsingType>(T2)->getUnderlyingType())) in IsStructurallyEquivalent()
H A DType.cpp528 template <> const UsingType *Type::getAs() const { in getAs()
529 return getAsSugar<UsingType>(this); in getAs()
3458 UsingType::UsingType(const UsingShadowDecl *Found, QualType Underlying, in UsingType() function in UsingType
3467 QualType UsingType::getUnderlyingType() const { in getUnderlyingType()
H A DASTDiagnostic.cpp42 if (const UsingType *UT = dyn_cast<UsingType>(Ty)) { in desugarForDiagnostic()
H A DTypePrinter.cpp1069 void TypePrinter::printUsingBefore(const UsingType *T, raw_ostream &OS) { in printUsingBefore()
1082 void TypePrinter::printUsingAfter(const UsingType *T, raw_ostream &OS) {} in printUsingAfter()
H A DASTContext.cpp2378 return getTypeInfo(cast<UsingType>(T)->desugar().getTypePtr()); in getTypeInfoImpl()
4702 UsingType::Profile(ID, Found, Underlying); in getUsingType()
4705 if (UsingType *T = UsingTypes.FindNodeOrInsertPos(ID, InsertPos)) in getUsingType()
4718 Allocate(UsingType::totalSizeToAlloc<QualType>(!Underlying.isNull()), in getUsingType()
4720 UsingType *NewType = new (Mem) UsingType(Found, Underlying, Canon); in getUsingType()
13024 const auto *UX = cast<UsingType>(X), *UY = cast<UsingType>(Y); in getCommonSugarTypeNode()
H A DJSONNodeDumper.cpp538 void JSONNodeDumper::VisitUsingType(const UsingType *TT) { in VisitUsingType()
H A DTextNodeDumper.cpp1544 void TextNodeDumper::VisitUsingType(const UsingType *T) { in VisitUsingType()
H A DASTImporter.cpp395 ExpectedType VisitUsingType(const UsingType *T);
1383 ExpectedType ASTNodeImporter::VisitUsingType(const UsingType *T) { in VisitUsingType()
3318 std::optional<bool> VisitUsingType(const UsingType *T) { in VisitUsingType()
H A DItaniumMangle.cpp2440 return mangleUnresolvedTypeOrSimpleId(cast<UsingType>(Ty)->desugar(), in mangleUnresolvedTypeOrSimpleId()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DTextNodeDumper.h315 void VisitUsingType(const UsingType *T);
H A DJSONNodeDumper.h212 void VisitUsingType(const UsingType *TT);
H A DType.h1812 friend class UsingType;
2600 template <> const UsingType *Type::getAs() const;
4507 class UsingType final : public Type,
4509 private llvm::TrailingObjects<UsingType, QualType> {
4514 UsingType(const UsingShadowDecl *Found, QualType Underlying, QualType Canon);
H A DTypeProperties.td365 let Class = UsingType in {
H A DRecursiveASTVisitor.h1062 DEF_TRAVERSE_TYPE(UsingType, {})
1336 DEF_TRAVERSE_TYPELOC(UsingType, {})
H A DTypeLoc.h670 UsingTypeLoc, UsingType> {
H A DASTContext.h221 mutable llvm::FoldingSet<UsingType> UsingTypes;
/openbsd-src/gnu/llvm/clang/include/clang/ASTMatchers/
H A DASTMatchers.h4186 UsingType), in AST_POLYMORPHIC_MATCHER_P() argument
6975 UsingType));
7313 extern const AstTypeMatcher<UsingType> usingType;
H A DASTMatchersInternal.h1086 if (const auto *S = dyn_cast<UsingType>(&Node)) {
/openbsd-src/gnu/llvm/clang/lib/ASTMatchers/
H A DASTMatchersInternal.cpp1064 const AstTypeMatcher<UsingType> usingType;
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGDebugInfo.cpp3323 T = cast<UsingType>(T)->getUnderlyingType(); in UnwrapTypeForDebugInfo()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DTreeTransform.h6241 const UsingType *T = TL.getTypePtr(); in TransformUsingType()
H A DSemaExpr.cpp4580 T = cast<UsingType>(Ty)->desugar(); in captureVariablyModifiedType()