Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang-tools-extra/clang-tidy/readability/
H A DConstReturnTypeCheck.cpp65 return isa<TypeOfExprType>(Node.getTypePtr()); in AST_MATCHER()
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DTypeNodes.td85 def TypeOfExprType : TypeNode<Type>, NeverCanonicalUnlessDependent;
/llvm-project-15.0.7/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()
4729 if (isa<TypeOfExprType>(TypePtr)) { in RewriteCastExpr()
4730 const TypeOfExprType *TypeOfExprTypePtr = cast<TypeOfExprType>(TypePtr); in RewriteCastExpr()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DASTNodeTraverser.h376 void VisitTypeOfExprType(const TypeOfExprType *T) { in VisitTypeOfExprType()
H A DTypeProperties.td395 let Class = TypeOfExprType in {
H A DType.h4515 class TypeOfExprType : public Type {
4521 TypeOfExprType(Expr *E, QualType can = QualType());
4542 : public TypeOfExprType, public llvm::FoldingSetNode {
4547 : TypeOfExprType(E), Context(Context) {}
H A DRecursiveASTVisitor.h1083 DEF_TRAVERSE_TYPE(TypeOfExprType,
1357 DEF_TRAVERSE_TYPELOC(TypeOfExprType,
H A DTypeLoc.h1989 TypeOfExprType,
/llvm-project-15.0.7/clang/lib/AST/
H A DType.cpp3472 TypeOfExprType::TypeOfExprType(Expr *E, QualType can) in TypeOfExprType() function in TypeOfExprType
3479 bool TypeOfExprType::isSugared() const { in isSugared()
3483 QualType TypeOfExprType::desugar() const { in desugar()
H A DASTStructuralEquivalence.cpp970 Context, cast<TypeOfExprType>(T1)->getUnderlyingExpr(), in IsStructurallyEquivalent()
971 cast<TypeOfExprType>(T2)->getUnderlyingExpr())) in IsStructurallyEquivalent()
H A DODRHash.cpp1055 void VisitTypeOfExprType(const TypeOfExprType *T) { in VisitTypeOfExprType()
H A DTypePrinter.cpp1109 void TypePrinter::printTypeOfExprBefore(const TypeOfExprType *T, in printTypeOfExprBefore()
1117 void TypePrinter::printTypeOfExprAfter(const TypeOfExprType *T, in printTypeOfExprAfter()
H A DASTContext.cpp5569 TypeOfExprType *toe; in getTypeOfExprType()
5580 toe = new (*this, TypeAlignment) TypeOfExprType(tofExpr, in getTypeOfExprType()
5581 QualType((TypeOfExprType*)Canon, 0)); in getTypeOfExprType()
5591 toe = new (*this, TypeAlignment) TypeOfExprType(tofExpr, Canonical); in getTypeOfExprType()
H A DMicrosoftMangle.cpp3272 void MicrosoftCXXNameMangler::mangleType(const TypeOfExprType *T, Qualifiers, in mangleType()
H A DItaniumMangle.cpp3949 void CXXNameMangler::mangleType(const TypeOfExprType *T) { in mangleType()
H A DASTImporter.cpp394 ExpectedType VisitTypeOfExprType(const TypeOfExprType *T);
1369 ExpectedType ASTNodeImporter::VisitTypeOfExprType(const TypeOfExprType *T) { in VisitTypeOfExprType()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCodeGenFunction.cpp2325 EmitIgnoredExpr(cast<TypeOfExprType>(ty)->getUnderlyingExpr()); in EmitVariablyModifiedType()
H A DCGDebugInfo.cpp3285 T = cast<TypeOfExprType>(T)->getUnderlyingExpr()->getType(); in UnwrapTypeForDebugInfo()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaChecking.cpp10037 while (const TypeOfExprType *TET = dyn_cast<TypeOfExprType>(ExprTy)) { in checkFormatExpr()
12872 if (const auto *TET = dyn_cast<TypeOfExprType>(LHS->getType())) in AnalyzeComparison()
12874 if (const auto *TET = dyn_cast<TypeOfExprType>(RHS->getType())) in AnalyzeComparison()
H A DSemaTemplateDeduction.cpp5925 cast<TypeOfExprType>(T)->getUnderlyingExpr(), in MarkUsedTemplateParameters()
H A DSemaTemplate.cpp6123 bool UnnamedLocalNoLinkageFinder::VisitTypeOfExprType(const TypeOfExprType*) { in VisitTypeOfExprType() argument
H A DSemaExpr.cpp4582 T = cast<TypeOfExprType>(Ty)->getUnderlyingExpr()->getType(); in captureVariablyModifiedType()