/external/clang/lib/AST/ |
D | DeclarationName.cpp | 115 if (QualTypeOrdering()(LHS.getCXXNameType(), RHS.getCXXNameType())) in compare() 117 if (QualTypeOrdering()(RHS.getCXXNameType(), LHS.getCXXNameType())) in compare() 170 return printCXXConstructorDestructorName(N.getCXXNameType(), OS, Policy); in print() 174 return printCXXConstructorDestructorName(N.getCXXNameType(), OS, Policy); in print() 200 QualType Type = N.getCXXNameType(); in print() 265 QualType T = getCXXNameType(); in isDependentName() 276 QualType DeclarationName::getCXXNameType() const { in getCXXNameType() function in DeclarationName 515 return Name.getCXXNameType()->containsUnexpandedParameterPack(); in containsUnexpandedParameterPack() 537 return Name.getCXXNameType()->isInstantiationDependentType(); in isInstantiationDependent()
|
D | ItaniumMangle.cpp | 1166 mangleUnresolvedTypeOrSimpleId(name.getCXXNameType()); in mangleUnresolvedName() 1954 mangleType(Name.getCXXNameType()); in mangleOperatorName()
|
D | ASTImporter.cpp | 6564 QualType T = Import(FromName.getCXXNameType()); in Import() 6573 QualType T = Import(FromName.getCXXNameType()); in Import() 6582 QualType T = Import(FromName.getCXXNameType()); in Import()
|
D | Expr.cpp | 243 QualType T = D->getDeclName().getCXXNameType(); in computeDeclRefDependence()
|
/external/llvm-project/clang/lib/AST/ |
D | DeclarationName.cpp | 92 if (QualTypeOrdering()(LHS.getCXXNameType(), RHS.getCXXNameType())) in compare() 94 if (QualTypeOrdering()(RHS.getCXXNameType(), LHS.getCXXNameType())) in compare() 164 return printCXXConstructorDestructorName(getCXXNameType(), OS, Policy); in print() 168 return printCXXConstructorDestructorName(getCXXNameType(), OS, Policy); in print() 193 QualType Type = getCXXNameType(); in print() 223 QualType T = getCXXNameType(); in isDependentName() 432 return Name.getCXXNameType()->containsUnexpandedParameterPack(); in containsUnexpandedParameterPack() 455 return Name.getCXXNameType()->isInstantiationDependentType(); in isInstantiationDependent()
|
D | ODRHash.cpp | 86 AddQualType(Name.getCXXNameType()); in AddDeclarationNameImpl() 95 AddQualType(Name.getCXXNameType()); in AddDeclarationNameImpl()
|
D | ComputeDependence.cpp | 444 QualType T = Decl->getDeclName().getCXXNameType(); in computeDependence()
|
D | ASTStructuralEquivalence.cpp | 125 return IsStructurallyEquivalent(Context, Name1.getCXXNameType(), in IsStructurallyEquivalent() 126 Name2.getCXXNameType()); in IsStructurallyEquivalent()
|
D | ItaniumMangle.cpp | 1237 mangleUnresolvedTypeOrSimpleId(name.getCXXNameType()); in mangleUnresolvedName() 2209 mangleType(Name.getCXXNameType()); in mangleOperatorName()
|
D | ASTImporter.cpp | 8909 if (auto ToTyOrErr = Import(FromName.getCXXNameType())) in Import() 8917 if (auto ToTyOrErr = Import(FromName.getCXXNameType())) in Import() 8933 if (auto ToTyOrErr = Import(FromName.getCXXNameType())) in Import()
|
/external/clang/include/clang/AST/ |
D | DeclarationName.h | 253 QualType getCXXNameType() const;
|
/external/clang/lib/Sema/ |
D | SemaTemplateVariadic.cpp | 333 if (!NameInfo.getName().getCXXNameType()->containsUnexpandedParameterPack()) in DiagnoseUnexpandedParameterPack() 341 .TraverseType(NameInfo.getName().getCXXNameType()); in DiagnoseUnexpandedParameterPack()
|
D | SemaLookup.cpp | 851 R.getLookupName().getCXXNameType()->isDependentType() || in LookupDirect() 903 = R.getSema().Context.getFunctionType(R.getLookupName().getCXXNameType(), in LookupDirect()
|
D | SemaCodeComplete.cpp | 2554 QualType Ty = Name.getCXXNameType(); in AddTypedNameChunk()
|
D | TreeTransform.h | 3569 QualType NewT = getDerived().TransformType(Name.getCXXNameType()); in TransformDeclarationNameInfo()
|
D | SemaDecl.cpp | 4895 !Context.hasSameType(Name.getCXXNameType(), in diagnoseQualifiedDeclaration()
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaTemplateVariadic.cpp | 474 if (!NameInfo.getName().getCXXNameType()->containsUnexpandedParameterPack()) in DiagnoseUnexpandedParameterPack() 482 .TraverseType(NameInfo.getName().getCXXNameType()); in DiagnoseUnexpandedParameterPack()
|
D | SemaLookup.cpp | 1068 R.getLookupName().getCXXNameType()->isDependentType() || in LookupDirect() 1084 R.getLookupName().getCXXNameType()->getContainedDeducedType(); in LookupDirect() 1130 = R.getSema().Context.getFunctionType(R.getLookupName().getCXXNameType(), in LookupDirect()
|
D | SemaCodeComplete.cpp | 3204 QualType Ty = Name.getCXXNameType(); in AddTypedNameChunk()
|
D | TreeTransform.h | 4100 QualType NewT = getDerived().TransformType(Name.getCXXNameType()); in TransformDeclarationNameInfo()
|
/external/llvm-project/clang/include/clang/AST/ |
D | DeclarationName.h | 439 QualType getCXXNameType() const { in getCXXNameType() function
|
D | PropertiesBase.td | 264 let Read = [{ node.getCXXNameType() }];
|
/external/clang/docs/ |
D | InternalsManual.rst | 991 The name is a C++ constructor name. Use ``N.getCXXNameType()`` to retrieve 998 The name is a C++ destructor name. Use ``N.getCXXNameType()`` to retrieve 1006 Use ``N.getCXXNameType()`` to retrieve the type that this conversion function
|
/external/llvm-project/clang/docs/ |
D | InternalsManual.rst | 1091 The name is a C++ constructor name. Use ``N.getCXXNameType()`` to retrieve 1098 The name is a C++ destructor name. Use ``N.getCXXNameType()`` to retrieve 1106 Use ``N.getCXXNameType()`` to retrieve the type that this conversion function
|
/external/clang/lib/Serialization/ |
D | ASTWriter.cpp | 5084 AddTypeRef(Name.getCXXNameType()); in AddDeclarationName()
|