Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DTypeNodes.td86 def TypeOfExprType : TypeNode<Type>, NeverCanonicalUnlessDependent;
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DASTNodeTraverser.h419 void VisitTypeOfExprType(const TypeOfExprType *T) { in VisitTypeOfExprType()
H A DType.h2107 friend class TypeOfExprType;
5668 class TypeOfExprType : public Type {
5675 TypeOfExprType(const ASTContext &Context, Expr *E, TypeOfKind Kind,
5701 class DependentTypeOfExprType : public TypeOfExprType,
5705 : TypeOfExprType(Context, E, Kind) {}
H A DTypeProperties.td428 let Class = TypeOfExprType in {
H A DRecursiveASTVisitor.h1091 DEF_TRAVERSE_TYPE(TypeOfExprType,
1381 DEF_TRAVERSE_TYPELOC(TypeOfExprType,
H A DTypeLoc.h2037 TypeOfExprType,
/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp2281 if (!isa<TypeOfExprType>(TypePtr)) in RewriteTypeOfDecl()
2283 while (isa<TypeOfExprType>(TypePtr)) { in RewriteTypeOfDecl()
2284 const TypeOfExprType *TypeOfExprTypePtr = cast<TypeOfExprType>(TypePtr); in RewriteTypeOfDecl()
4726 if (isa<TypeOfExprType>(TypePtr)) { in RewriteCastExpr()
4727 const TypeOfExprType *TypeOfExprTypePtr = cast<TypeOfExprType>(TypePtr); in RewriteCastExpr()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DType.cpp3903 TypeOfExprType::TypeOfExprType(const ASTContext &Context, Expr *E, in TypeOfExprType() function in TypeOfExprType
3918 bool TypeOfExprType::isSugared() const { in isSugared()
3922 QualType TypeOfExprType::desugar() const { in desugar()
H A DASTStructuralEquivalence.cpp1129 Context, cast<TypeOfExprType>(T1)->getUnderlyingExpr(), in IsStructurallyEquivalent()
1130 cast<TypeOfExprType>(T2)->getUnderlyingExpr())) in IsStructurallyEquivalent()
H A DODRHash.cpp1193 void VisitTypeOfExprType(const TypeOfExprType *T) { in VisitTypeOfExprType()
H A DTypePrinter.cpp1213 void TypePrinter::printTypeOfExprBefore(const TypeOfExprType *T, in printTypeOfExprBefore()
1222 void TypePrinter::printTypeOfExprAfter(const TypeOfExprType *T, in printTypeOfExprAfter()
H A DASTContext.cpp6018 TypeOfExprType *toe; in getTypeOfExprType()
6030 toe = new (*this, alignof(TypeOfExprType)) TypeOfExprType( in getTypeOfExprType()
6031 *this, tofExpr, Kind, QualType((TypeOfExprType *)Canon, 0)); in getTypeOfExprType()
6041 toe = new (*this, alignof(TypeOfExprType)) in getTypeOfExprType()
6042 TypeOfExprType(*this, tofExpr, Kind, Canonical); in getTypeOfExprType()
H A DMicrosoftMangle.cpp3567 void MicrosoftCXXNameMangler::mangleType(const TypeOfExprType *T, Qualifiers, in mangleType()
H A DItaniumMangle.cpp4340 void CXXNameMangler::mangleType(const TypeOfExprType *T) { in mangleType()
H A DASTImporter.cpp1414 ExpectedType ASTNodeImporter::VisitTypeOfExprType(const TypeOfExprType *T) { in VisitTypeOfExprType()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenFunction.cpp2497 EmitIgnoredExpr(cast<TypeOfExprType>(ty)->getUnderlyingExpr()); in EmitVariablyModifiedType()
H A DCGDebugInfo.cpp3590 T = cast<TypeOfExprType>(T)->getUnderlyingExpr()->getType(); in UnwrapTypeForDebugInfo()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp7251 while (const TypeOfExprType *TET = dyn_cast<TypeOfExprType>(ExprTy)) { in checkFormatExpr()
10164 if (const auto *TET = dyn_cast<TypeOfExprType>(LHS->getType())) in AnalyzeComparison()
10166 if (const auto *TET = dyn_cast<TypeOfExprType>(RHS->getType())) in AnalyzeComparison()
H A DSemaTemplateDeduction.cpp6588 cast<TypeOfExprType>(T)->getUnderlyingExpr(), in MarkUsedTemplateParameters()
H A DSemaTemplate.cpp5736 bool UnnamedLocalNoLinkageFinder::VisitTypeOfExprType(const TypeOfExprType*) { in VisitTypeOfExprType() argument
H A DTreeTransform.h6557 TypeOfKind Kind = Result->castAs<TypeOfExprType>()->getKind(); in TransformTypeOfExprType()
H A DSemaExpr.cpp4481 T = cast<TypeOfExprType>(Ty)->getUnderlyingExpr()->getType(); in captureVariablyModifiedType()