Searched refs:getScopeRep (Results 1 – 11 of 11) sorted by relevance
/external/clang/lib/Sema/ |
D | SemaCXXScopeSpec.cpp | 87 = static_cast<NestedNameSpecifier *>(SS.getScopeRep()); in computeDeclContext() 169 = static_cast<NestedNameSpecifier *>(SS.getScopeRep()); in isDependentScopeSpecifier() 181 = static_cast<NestedNameSpecifier *>(SS.getScopeRep()); in isUnknownSpecialization() 694 == static_cast<NestedNameSpecifier*>(SS.getScopeRep())); in ActOnCXXNestedNameSpecifier() 780 Annotation->NNS = SS.getScopeRep(); in SaveNestedNameSpecifierAnnotation() 802 static_cast<NestedNameSpecifier*>(SS.getScopeRep()); in ShouldEnterDeclaratorScope()
|
D | SemaTemplateVariadic.cpp | 232 if (!SS.getScopeRep() || in DiagnoseUnexpandedParameterPack() 233 !SS.getScopeRep()->containsUnexpandedParameterPack()) in DiagnoseUnexpandedParameterPack() 238 .TraverseNestedNameSpecifier(SS.getScopeRep()); in DiagnoseUnexpandedParameterPack() 677 if (Chunk.Mem.Scope().getScopeRep() && in containsUnexpandedParameterPacks() 678 Chunk.Mem.Scope().getScopeRep()->containsUnexpandedParameterPack()) in containsUnexpandedParameterPacks()
|
D | SemaTemplate.cpp | 187 = static_cast<NestedNameSpecifier *>(SS.getScopeRep()); in isTemplateName() 225 NestedNameSpecifier *Qualifier = (NestedNameSpecifier*)SS->getScopeRep(); in DiagnoseUnknownTemplateName() 1462 NestedNameSpecifierLoc NNSLoc(SS.getScopeRep(), SS.location_data()); in getRangeOfTypeInNestedNameSpecifier() 1524 if (SS.getScopeRep()) { in MatchTemplateParametersToScopeSpecifier() 1529 T = QualType(SS.getScopeRep()->getAsType(), 0); in MatchTemplateParametersToScopeSpecifier() 2071 Result = Context.getElaboratedType(ETK_None, SS.getScopeRep(), Result); in ActOnTemplateIdType() 2162 Result = Context.getElaboratedType(Keyword, SS.getScopeRep(), Result); in ActOnTagTemplateIdType() 2227 << (NestedNameSpecifier*) SS.getScopeRep() in BuildQualifiedTemplateIdExpr() 2300 = static_cast<NestedNameSpecifier *>(SS.getScopeRep()); in ActOnDependentTemplateName() 5737 for (NestedNameSpecifier *NNS = (NestedNameSpecifier *)SS.getScopeRep(); in ScopeSpecifierHasTemplateId() [all …]
|
D | SemaExprMember.cpp | 1467 static_cast<NestedNameSpecifier*>(SS.getScopeRep()))); in ActOnMemberAccessExpr() 1565 S.PerformObjectMemberConversion(BaseExpr, SS.getScopeRep(), in BuildFieldReferenceExpr()
|
D | SemaDeclCXX.cpp | 1362 if (!SS.getScopeRep() && !TemplateTypeTy) { in ActOnMemInitializer() 1486 static_cast<NestedNameSpecifier*>(SS.getScopeRep()); in ActOnMemInitializer() 4902 Qualifier = static_cast<NestedNameSpecifier *>(SS.getScopeRep()); in ActOnUsingDirective() 5482 = static_cast<NestedNameSpecifier*>(SS.getScopeRep()); in CheckUsingDeclRedeclaration() 5565 << (NestedNameSpecifier*) SS.getScopeRep() << SS.getRange(); in CheckUsingDeclQualifier() 5590 << (NestedNameSpecifier*) SS.getScopeRep() in CheckUsingDeclQualifier() 5650 << (NestedNameSpecifier*) SS.getScopeRep() in CheckUsingDeclQualifier() 8329 QualType T = Context.getDependentNameType(ETK, SS.getScopeRep(), Name); in ActOnTemplatedFriendTag() 8558 } else if (!SS.getScopeRep()->isDependent()) { in ActOnFriendFunctionDecl()
|
D | TreeTransform.h | 2607 if (SS.getScopeRep() == NNS.getNestedNameSpecifier() && in TransformNestedNameSpecifierLoc() 2615 return NestedNameSpecifierLoc(SS.getScopeRep(), NNS.getOpaqueData()); in TransformNestedNameSpecifierLoc() 2691 SS.getScopeRep() == QTN->getQualifier() && in TransformTemplateName() 2700 if (SS.getScopeRep()) { in TransformTemplateName() 2707 SS.getScopeRep() == DTN->getQualifier() && in TransformTemplateName() 8246 return SemaRef.Context.getQualifiedTemplateName(SS.getScopeRep(), TemplateKW, in RebuildTemplateName()
|
D | SemaDecl.cpp | 274 const Type *Ty = SS->getScopeRep()->getAsType(); in isMicrosoftMissingTypename() 368 << (NestedNameSpecifier *)SS->getScopeRep() << II.getName() in DiagnoseUnknownTypeName() 657 Template = Context.getQualifiedTemplateName(SS.getScopeRep(), in ClassifyName() 3023 << (NestedNameSpecifier*)D.getCXXScopeSpec().getScopeRep() in HandleDeclarator() 4785 D.getCXXScopeSpec().getScopeRep()->isDependent() || in ActOnFunctionDeclarator()
|
D | SemaType.cpp | 2247 = static_cast<NestedNameSpecifier*>(SS.getScopeRep()); in GetFullTypeForDeclarator() 3965 NNS = static_cast<NestedNameSpecifier *>(SS.getScopeRep()); in getElaboratedType()
|
D | SemaCodeComplete.cpp | 3674 if (!SS.getScopeRep() || !CodeCompleter) in CodeCompleteQualifiedId() 3692 NestedNameSpecifier *NNS = (NestedNameSpecifier *)SS.getScopeRep(); in CodeCompleteQualifiedId()
|
D | SemaExprCXX.cpp | 76 NestedNameSpecifier *NNS = (NestedNameSpecifier *)SS.getScopeRep(); in getDestructorName()
|
/external/clang/include/clang/Sema/ |
D | DeclSpec.h | 72 NestedNameSpecifier *getScopeRep() const { in getScopeRep() function 169 bool isInvalid() const { return isNotEmpty() && getScopeRep() == 0; } in isInvalid() 171 bool isValid() const { return isNotEmpty() && getScopeRep() != 0; } in isValid() 184 bool isSet() const { return getScopeRep() != 0; } in isSet()
|