Searched refs:ElaboratedType (Results 1 – 20 of 20) sorted by relevance
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | LLVMConventionsChecker.cpp | 52 if (const ElaboratedType *QT = T->getAs<ElaboratedType>()) in IsStdString()
|
/external/clang/include/clang/ASTMatchers/ |
D | ASTMatchers.h | 4192 AST_TYPE_MATCHER(ElaboratedType, elaboratedType); 4209 AST_MATCHER_P(ElaboratedType, hasQualifier, in AST_MATCHER_P() argument 4232 AST_MATCHER_P(ElaboratedType, namesType, internal::Matcher<QualType>, in AST_MATCHER_P() argument
|
/external/clang/lib/AST/ |
D | NestedNameSpecifier.cpp | 299 assert(!isa<ElaboratedType>(T) && in print()
|
D | DeclPrinter.cpp | 302 if (!BaseType.isNull() && isa<ElaboratedType>(BaseType)) in VisitDeclContext() 303 BaseType = cast<ElaboratedType>(BaseType)->getNamedType(); in VisitDeclContext()
|
D | TypePrinter.cpp | 1051 void TypePrinter::printElaboratedBefore(const ElaboratedType *T, in printElaboratedBefore() 1065 void TypePrinter::printElaboratedAfter(const ElaboratedType *T, in printElaboratedAfter()
|
D | ASTDiagnostic.cpp | 36 if (const ElaboratedType *ET = dyn_cast<ElaboratedType>(Ty)) { in Desugar()
|
D | ASTImporter.cpp | 74 QualType VisitElaboratedType(const ElaboratedType *T); 767 const ElaboratedType *Elab1 = cast<ElaboratedType>(T1); in IsStructurallyEquivalent() 768 const ElaboratedType *Elab2 = cast<ElaboratedType>(T2); in IsStructurallyEquivalent() 1816 QualType ASTNodeImporter::VisitElaboratedType(const ElaboratedType *T) { in VisitElaboratedType()
|
D | Type.cpp | 2490 if (const ElaboratedType *Elab = dyn_cast<ElaboratedType>(this)) in isElaboratedTypeSpecifier()
|
D | ASTContext.cpp | 1817 return getTypeInfo(cast<ElaboratedType>(T)->getNamedType().getTypePtr()); in getTypeInfoImpl() 3468 ElaboratedType::Profile(ID, Keyword, NNS, NamedType); in getElaboratedType() 3471 ElaboratedType *T = ElaboratedTypes.FindNodeOrInsertPos(ID, InsertPos); in getElaboratedType() 3478 ElaboratedType *CheckT = ElaboratedTypes.FindNodeOrInsertPos(ID, InsertPos); in getElaboratedType() 3483 T = new (*this, TypeAlignment) ElaboratedType(Keyword, NNS, NamedType, Canon); in getElaboratedType()
|
D | ItaniumMangle.cpp | 1620 cast<ElaboratedType>(Ty)->getNamedType(), Prefix); in mangleUnresolvedTypeOrSimpleId()
|
/external/clang/tools/libclang/ |
D | CXCursor.cpp | 1026 if (const ElaboratedType *ElabT = Ty->getAs<ElaboratedType>()) { in getTypeRefCursor()
|
D | CXType.cpp | 422 TP = cast<ElaboratedType>(TP)->getNamedType().getTypePtrOrNull(); in clang_getTypeDeclaration()
|
/external/clang/include/clang/AST/ |
D | Type.h | 99 class ElaboratedType; 4261 class ElaboratedType : public TypeWithKeyword, public llvm::FoldingSetNode { 4269 ElaboratedType(ElaboratedTypeKeyword Keyword, NestedNameSpecifier *NNS, 4285 ~ElaboratedType();
|
D | RecursiveASTVisitor.h | 947 DEF_TRAVERSE_TYPE(ElaboratedType, { 1169 DEF_TRAVERSE_TYPELOC(ElaboratedType, {
|
D | TypeLoc.h | 1724 ElaboratedType,
|
D | ASTContext.h | 122 mutable llvm::FoldingSet<ElaboratedType> ElaboratedTypes;
|
/external/clang/lib/Sema/ |
D | SemaType.cpp | 1380 = ElaboratedType::getKeywordForTypeSpec(DS.getTypeSpecType()); in ConvertDeclSpecToType() 4579 if (TInfo->getType()->getAs<ElaboratedType>()) { in VisitTemplateSpecializationTypeLoc() 4747 if (isa<ElaboratedType>(ClsTy)) { in VisitMemberPointerTypeLoc()
|
D | TreeTransform.h | 5511 const ElaboratedType *T = TL.getTypePtr(); in TransformElaboratedType() 5649 if (const ElaboratedType* ElabT = Result->getAs<ElaboratedType>()) { in TransformDependentNameType() 5708 if (const ElaboratedType *ElabT = dyn_cast<ElaboratedType>(Result)) { in TransformDependentTemplateSpecializationType()
|
/external/clang/lib/CodeGen/ |
D | CGDebugInfo.cpp | 2129 T = cast<ElaboratedType>(T)->getNamedType(); in UnwrapTypeForDebugInfo()
|
/external/clang/lib/Serialization/ |
D | ASTWriter.cpp | 407 void ASTTypeWriter::VisitElaboratedType(const ElaboratedType *T) { in VisitElaboratedType()
|