/external/llvm-project/clang/include/clang/Basic/ |
D | TypeNodes.td | 84 def TypeOfExprType : TypeNode<Type>, NeverCanonicalUnlessDependent;
|
/external/llvm-project/clang/include/clang/AST/ |
D | ASTNodeTraverser.h | 351 void VisitTypeOfExprType(const TypeOfExprType *T) { in VisitTypeOfExprType()
|
D | Type.h | 4412 class TypeOfExprType : public Type { 4418 TypeOfExprType(Expr *E, QualType can = QualType()); 4439 : public TypeOfExprType, public llvm::FoldingSetNode { 4444 : TypeOfExprType(E), Context(Context) {}
|
D | TypeProperties.td | 382 let Class = TypeOfExprType in {
|
D | RecursiveASTVisitor.h | 976 DEF_TRAVERSE_TYPE(TypeOfExprType, 1247 DEF_TRAVERSE_TYPELOC(TypeOfExprType,
|
D | TypeLoc.h | 1908 TypeOfExprType,
|
/external/clang/lib/AST/ |
D | Type.cpp | 2873 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()
|
D | TypePrinter.cpp | 814 void TypePrinter::printTypeOfExprBefore(const TypeOfExprType *T, in printTypeOfExprBefore() 821 void TypePrinter::printTypeOfExprAfter(const TypeOfExprType *T, in printTypeOfExprAfter()
|
D | ASTImporter.cpp | 61 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()
|
D | ASTContext.cpp | 3927 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()
|
D | ASTDumper.cpp | 348 void VisitTypeOfExprType(const TypeOfExprType *T) { in VisitTypeOfExprType()
|
/external/clang/lib/Frontend/Rewrite/ |
D | RewriteObjC.cpp | 2186 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()
|
D | RewriteModernObjC.cpp | 2275 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/ |
D | RewriteObjC.cpp | 2195 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()
|
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() 4741 if (isa<TypeOfExprType>(TypePtr)) { in RewriteCastExpr() 4742 const TypeOfExprType *TypeOfExprTypePtr = cast<TypeOfExprType>(TypePtr); in RewriteCastExpr()
|
/external/llvm-project/clang/lib/AST/ |
D | Type.cpp | 3396 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()
|
D | ASTStructuralEquivalence.cpp | 937 Context, cast<TypeOfExprType>(T1)->getUnderlyingExpr(), in IsStructurallyEquivalent() 938 cast<TypeOfExprType>(T2)->getUnderlyingExpr())) in IsStructurallyEquivalent()
|
D | ODRHash.cpp | 1054 void VisitTypeOfExprType(const TypeOfExprType *T) { in VisitTypeOfExprType()
|
D | TypePrinter.cpp | 1061 void TypePrinter::printTypeOfExprBefore(const TypeOfExprType *T, in printTypeOfExprBefore() 1069 void TypePrinter::printTypeOfExprAfter(const TypeOfExprType *T, in printTypeOfExprAfter()
|
D | ASTContext.cpp | 5332 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/ |
D | Type.h | 3528 class TypeOfExprType : public Type { 3532 TypeOfExprType(Expr *E, QualType can = QualType()); 3553 : public TypeOfExprType, public llvm::FoldingSetNode { 3558 : TypeOfExprType(E), Context(Context) { }
|
D | RecursiveASTVisitor.h | 987 DEF_TRAVERSE_TYPE(TypeOfExprType, 1203 DEF_TRAVERSE_TYPELOC(TypeOfExprType,
|
D | TypeLoc.h | 1628 TypeOfExprType,
|
/external/clang/lib/CodeGen/ |
D | CGExprConstant.cpp | 976 T = cast<TypeOfExprType>(T)->getUnderlyingExpr()->getType(); in VisitObjCEncodeExpr()
|
D | CodeGenFunction.cpp | 1793 EmitIgnoredExpr(cast<TypeOfExprType>(ty)->getUnderlyingExpr()); in EmitVariablyModifiedType()
|