/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | TypeNodes.td | 86 def TypeOfExprType : TypeNode<Type>, NeverCanonicalUnlessDependent;
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | ASTNodeTraverser.h | 419 void VisitTypeOfExprType(const TypeOfExprType *T) { in VisitTypeOfExprType()
|
H A D | Type.h | 2107 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 D | TypeProperties.td | 428 let Class = TypeOfExprType in {
|
H A D | RecursiveASTVisitor.h | 1091 DEF_TRAVERSE_TYPE(TypeOfExprType, 1381 DEF_TRAVERSE_TYPELOC(TypeOfExprType,
|
H A D | TypeLoc.h | 2037 TypeOfExprType,
|
/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/ |
H A D | RewriteModernObjC.cpp | 2281 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 D | Type.cpp | 3903 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 D | ASTStructuralEquivalence.cpp | 1129 Context, cast<TypeOfExprType>(T1)->getUnderlyingExpr(), in IsStructurallyEquivalent() 1130 cast<TypeOfExprType>(T2)->getUnderlyingExpr())) in IsStructurallyEquivalent()
|
H A D | ODRHash.cpp | 1193 void VisitTypeOfExprType(const TypeOfExprType *T) { in VisitTypeOfExprType()
|
H A D | TypePrinter.cpp | 1213 void TypePrinter::printTypeOfExprBefore(const TypeOfExprType *T, in printTypeOfExprBefore() 1222 void TypePrinter::printTypeOfExprAfter(const TypeOfExprType *T, in printTypeOfExprAfter()
|
H A D | ASTContext.cpp | 6018 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 D | MicrosoftMangle.cpp | 3567 void MicrosoftCXXNameMangler::mangleType(const TypeOfExprType *T, Qualifiers, in mangleType()
|
H A D | ItaniumMangle.cpp | 4340 void CXXNameMangler::mangleType(const TypeOfExprType *T) { in mangleType()
|
H A D | ASTImporter.cpp | 1414 ExpectedType ASTNodeImporter::VisitTypeOfExprType(const TypeOfExprType *T) { in VisitTypeOfExprType()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CodeGenFunction.cpp | 2497 EmitIgnoredExpr(cast<TypeOfExprType>(ty)->getUnderlyingExpr()); in EmitVariablyModifiedType()
|
H A D | CGDebugInfo.cpp | 3590 T = cast<TypeOfExprType>(T)->getUnderlyingExpr()->getType(); in UnwrapTypeForDebugInfo()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaChecking.cpp | 7251 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 D | SemaTemplateDeduction.cpp | 6588 cast<TypeOfExprType>(T)->getUnderlyingExpr(), in MarkUsedTemplateParameters()
|
H A D | SemaTemplate.cpp | 5736 bool UnnamedLocalNoLinkageFinder::VisitTypeOfExprType(const TypeOfExprType*) { in VisitTypeOfExprType() argument
|
H A D | TreeTransform.h | 6557 TypeOfKind Kind = Result->castAs<TypeOfExprType>()->getKind(); in TransformTypeOfExprType()
|
H A D | SemaExpr.cpp | 4481 T = cast<TypeOfExprType>(Ty)->getUnderlyingExpr()->getType(); in captureVariablyModifiedType()
|