Home
last modified time | relevance | path

Searched refs:TypeOfExprType (Results 1 – 23 of 23) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DTypeNodes.td85 def TypeOfExprType : TypeNode<Type>, NeverCanonicalUnlessDependent;
/freebsd-14.2/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp2195 if (!isa<TypeOfExprType>(TypePtr)) in RewriteTypeOfDecl()
2197 while (isa<TypeOfExprType>(TypePtr)) { in RewriteTypeOfDecl()
2198 const TypeOfExprType *TypeOfExprTypePtr = cast<TypeOfExprType>(TypePtr); in RewriteTypeOfDecl()
3897 if (isa<TypeOfExprType>(TypePtr)) { in RewriteCastExpr()
3898 const TypeOfExprType *TypeOfExprTypePtr = cast<TypeOfExprType>(TypePtr); in RewriteCastExpr()
H A DRewriteModernObjC.cpp2282 if (!isa<TypeOfExprType>(TypePtr)) in RewriteTypeOfDecl()
2284 while (isa<TypeOfExprType>(TypePtr)) { in RewriteTypeOfDecl()
2285 const TypeOfExprType *TypeOfExprTypePtr = cast<TypeOfExprType>(TypePtr); in RewriteTypeOfDecl()
4728 if (isa<TypeOfExprType>(TypePtr)) { in RewriteCastExpr()
4729 const TypeOfExprType *TypeOfExprTypePtr = cast<TypeOfExprType>(TypePtr); in RewriteCastExpr()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DASTNodeTraverser.h382 void VisitTypeOfExprType(const TypeOfExprType *T) { in VisitTypeOfExprType()
H A DType.h1881 friend class TypeOfExprType;
4814 class TypeOfExprType : public Type {
4820 TypeOfExprType(Expr *E, TypeOfKind Kind, QualType Can = QualType());
4846 class DependentTypeOfExprType : public TypeOfExprType,
4849 DependentTypeOfExprType(Expr *E, TypeOfKind Kind) : TypeOfExprType(E, Kind) {}
H A DTypeProperties.td395 let Class = TypeOfExprType in {
H A DRecursiveASTVisitor.h1060 DEF_TRAVERSE_TYPE(TypeOfExprType,
1334 DEF_TRAVERSE_TYPELOC(TypeOfExprType,
H A DTypeLoc.h1996 TypeOfExprType,
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DType.cpp3754 TypeOfExprType::TypeOfExprType(Expr *E, TypeOfKind Kind, QualType Can) in TypeOfExprType() function in TypeOfExprType
3768 bool TypeOfExprType::isSugared() const { in isSugared()
3772 QualType TypeOfExprType::desugar() const { in desugar()
H A DTypePrinter.cpp1161 void TypePrinter::printTypeOfExprBefore(const TypeOfExprType *T, in printTypeOfExprBefore()
1170 void TypePrinter::printTypeOfExprAfter(const TypeOfExprType *T, in printTypeOfExprAfter()
H A DASTStructuralEquivalence.cpp1111 Context, cast<TypeOfExprType>(T1)->getUnderlyingExpr(), in IsStructurallyEquivalent()
1112 cast<TypeOfExprType>(T2)->getUnderlyingExpr())) in IsStructurallyEquivalent()
H A DODRHash.cpp1176 void VisitTypeOfExprType(const TypeOfExprType *T) { in VisitTypeOfExprType()
H A DASTContext.cpp5608 TypeOfExprType *toe; in getTypeOfExprType()
5620 toe = new (*this, alignof(TypeOfExprType)) in getTypeOfExprType()
5621 TypeOfExprType(tofExpr, Kind, QualType((TypeOfExprType *)Canon, 0)); in getTypeOfExprType()
5631 toe = new (*this, alignof(TypeOfExprType)) in getTypeOfExprType()
5632 TypeOfExprType(tofExpr, Kind, Canonical); in getTypeOfExprType()
H A DMicrosoftMangle.cpp3420 void MicrosoftCXXNameMangler::mangleType(const TypeOfExprType *T, Qualifiers, in mangleType()
H A DItaniumMangle.cpp4323 void CXXNameMangler::mangleType(const TypeOfExprType *T) { in mangleType()
H A DASTImporter.cpp1388 ExpectedType ASTNodeImporter::VisitTypeOfExprType(const TypeOfExprType *T) { in VisitTypeOfExprType()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenFunction.cpp2415 EmitIgnoredExpr(cast<TypeOfExprType>(ty)->getUnderlyingExpr()); in EmitVariablyModifiedType()
H A DCGDebugInfo.cpp3447 T = cast<TypeOfExprType>(T)->getUnderlyingExpr()->getType(); in UnwrapTypeForDebugInfo()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp12040 while (const TypeOfExprType *TET = dyn_cast<TypeOfExprType>(ExprTy)) { in checkFormatExpr()
14937 if (const auto *TET = dyn_cast<TypeOfExprType>(LHS->getType())) in AnalyzeComparison()
14939 if (const auto *TET = dyn_cast<TypeOfExprType>(RHS->getType())) in AnalyzeComparison()
H A DSemaTemplateDeduction.cpp6414 cast<TypeOfExprType>(T)->getUnderlyingExpr(), in MarkUsedTemplateParameters()
H A DSemaTemplate.cpp6464 bool UnnamedLocalNoLinkageFinder::VisitTypeOfExprType(const TypeOfExprType*) { in VisitTypeOfExprType() argument
H A DTreeTransform.h6409 TypeOfKind Kind = Result->getAs<TypeOfExprType>()->getKind(); in TransformTypeOfExprType()
H A DSemaExpr.cpp4726 T = cast<TypeOfExprType>(Ty)->getUnderlyingExpr()->getType(); in captureVariablyModifiedType()