Home
last modified time | relevance | path

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

12

/external/llvm-project/clang/include/clang/Basic/
DTypeNodes.td84 def TypeOfExprType : TypeNode<Type>, NeverCanonicalUnlessDependent;
/external/llvm-project/clang/include/clang/AST/
DASTNodeTraverser.h351 void VisitTypeOfExprType(const TypeOfExprType *T) { in VisitTypeOfExprType()
DType.h4412 class TypeOfExprType : public Type {
4418 TypeOfExprType(Expr *E, QualType can = QualType());
4439 : public TypeOfExprType, public llvm::FoldingSetNode {
4444 : TypeOfExprType(E), Context(Context) {}
DTypeProperties.td382 let Class = TypeOfExprType in {
DRecursiveASTVisitor.h976 DEF_TRAVERSE_TYPE(TypeOfExprType,
1247 DEF_TRAVERSE_TYPELOC(TypeOfExprType,
DTypeLoc.h1908 TypeOfExprType,
/external/clang/lib/AST/
DType.cpp2873 TypeOfExprType::TypeOfExprType(Expr *E, QualType can) in TypeOfExprType() function in TypeOfExprType
2881 bool TypeOfExprType::isSugared() const { in isSugared()
2885 QualType TypeOfExprType::desugar() const { in desugar()
DTypePrinter.cpp814 void TypePrinter::printTypeOfExprBefore(const TypeOfExprType *T, in printTypeOfExprBefore()
821 void TypePrinter::printTypeOfExprAfter(const TypeOfExprType *T, in printTypeOfExprAfter()
DASTImporter.cpp61 QualType VisitTypeOfExprType(const TypeOfExprType *T);
716 cast<TypeOfExprType>(T1)->getUnderlyingExpr(), in IsStructurallyEquivalent()
717 cast<TypeOfExprType>(T2)->getUnderlyingExpr())) in IsStructurallyEquivalent()
1782 QualType ASTNodeImporter::VisitTypeOfExprType(const TypeOfExprType *T) { in VisitTypeOfExprType()
DASTContext.cpp3927 TypeOfExprType *toe; in getTypeOfExprType()
3938 toe = new (*this, TypeAlignment) TypeOfExprType(tofExpr, in getTypeOfExprType()
3939 QualType((TypeOfExprType*)Canon, 0)); in getTypeOfExprType()
3949 toe = new (*this, TypeAlignment) TypeOfExprType(tofExpr, Canonical); in getTypeOfExprType()
DASTDumper.cpp348 void VisitTypeOfExprType(const TypeOfExprType *T) { in VisitTypeOfExprType()
/external/clang/lib/Frontend/Rewrite/
DRewriteObjC.cpp2186 if (!isa<TypeOfExprType>(TypePtr)) in RewriteTypeOfDecl()
2188 while (isa<TypeOfExprType>(TypePtr)) { in RewriteTypeOfDecl()
2189 const TypeOfExprType *TypeOfExprTypePtr = cast<TypeOfExprType>(TypePtr); in RewriteTypeOfDecl()
3900 if (isa<TypeOfExprType>(TypePtr)) { in RewriteCastExpr()
3901 const TypeOfExprType *TypeOfExprTypePtr = cast<TypeOfExprType>(TypePtr); in RewriteCastExpr()
DRewriteModernObjC.cpp2275 if (!isa<TypeOfExprType>(TypePtr)) in RewriteTypeOfDecl()
2277 while (isa<TypeOfExprType>(TypePtr)) { in RewriteTypeOfDecl()
2278 const TypeOfExprType *TypeOfExprTypePtr = cast<TypeOfExprType>(TypePtr); in RewriteTypeOfDecl()
4741 if (isa<TypeOfExprType>(TypePtr)) { in RewriteCastExpr()
4742 const TypeOfExprType *TypeOfExprTypePtr = cast<TypeOfExprType>(TypePtr); in RewriteCastExpr()
/external/llvm-project/clang/lib/Frontend/Rewrite/
DRewriteObjC.cpp2195 if (!isa<TypeOfExprType>(TypePtr)) in RewriteTypeOfDecl()
2197 while (isa<TypeOfExprType>(TypePtr)) { in RewriteTypeOfDecl()
2198 const TypeOfExprType *TypeOfExprTypePtr = cast<TypeOfExprType>(TypePtr); in RewriteTypeOfDecl()
3911 if (isa<TypeOfExprType>(TypePtr)) { in RewriteCastExpr()
3912 const TypeOfExprType *TypeOfExprTypePtr = cast<TypeOfExprType>(TypePtr); in RewriteCastExpr()
DRewriteModernObjC.cpp2281 if (!isa<TypeOfExprType>(TypePtr)) in RewriteTypeOfDecl()
2283 while (isa<TypeOfExprType>(TypePtr)) { in RewriteTypeOfDecl()
2284 const TypeOfExprType *TypeOfExprTypePtr = cast<TypeOfExprType>(TypePtr); in RewriteTypeOfDecl()
4741 if (isa<TypeOfExprType>(TypePtr)) { in RewriteCastExpr()
4742 const TypeOfExprType *TypeOfExprTypePtr = cast<TypeOfExprType>(TypePtr); in RewriteCastExpr()
/external/llvm-project/clang/lib/AST/
DType.cpp3396 TypeOfExprType::TypeOfExprType(Expr *E, QualType can) in TypeOfExprType() function in TypeOfExprType
3403 bool TypeOfExprType::isSugared() const { in isSugared()
3407 QualType TypeOfExprType::desugar() const { in desugar()
DASTStructuralEquivalence.cpp937 Context, cast<TypeOfExprType>(T1)->getUnderlyingExpr(), in IsStructurallyEquivalent()
938 cast<TypeOfExprType>(T2)->getUnderlyingExpr())) in IsStructurallyEquivalent()
DODRHash.cpp1054 void VisitTypeOfExprType(const TypeOfExprType *T) { in VisitTypeOfExprType()
DTypePrinter.cpp1061 void TypePrinter::printTypeOfExprBefore(const TypeOfExprType *T, in printTypeOfExprBefore()
1069 void TypePrinter::printTypeOfExprAfter(const TypeOfExprType *T, in printTypeOfExprAfter()
DASTContext.cpp5332 TypeOfExprType *toe; in getTypeOfExprType()
5343 toe = new (*this, TypeAlignment) TypeOfExprType(tofExpr, in getTypeOfExprType()
5344 QualType((TypeOfExprType*)Canon, 0)); in getTypeOfExprType()
5354 toe = new (*this, TypeAlignment) TypeOfExprType(tofExpr, Canonical); in getTypeOfExprType()
/external/clang/include/clang/AST/
DType.h3528 class TypeOfExprType : public Type {
3532 TypeOfExprType(Expr *E, QualType can = QualType());
3553 : public TypeOfExprType, public llvm::FoldingSetNode {
3558 : TypeOfExprType(E), Context(Context) { }
DRecursiveASTVisitor.h987 DEF_TRAVERSE_TYPE(TypeOfExprType,
1203 DEF_TRAVERSE_TYPELOC(TypeOfExprType,
DTypeLoc.h1628 TypeOfExprType,
/external/clang/lib/CodeGen/
DCGExprConstant.cpp976 T = cast<TypeOfExprType>(T)->getUnderlyingExpr()->getType(); in VisitObjCEncodeExpr()
DCodeGenFunction.cpp1793 EmitIgnoredExpr(cast<TypeOfExprType>(ty)->getUnderlyingExpr()); in EmitVariablyModifiedType()

12