Home
last modified time | relevance | path

Searched refs:getScopeRep (Results 1 – 11 of 11) sorted by relevance

/external/clang/lib/Sema/
DSemaCXXScopeSpec.cpp87 = 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()
DSemaTemplateVariadic.cpp232 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()
DSemaTemplate.cpp187 = 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 …]
DSemaExprMember.cpp1467 static_cast<NestedNameSpecifier*>(SS.getScopeRep()))); in ActOnMemberAccessExpr()
1565 S.PerformObjectMemberConversion(BaseExpr, SS.getScopeRep(), in BuildFieldReferenceExpr()
DSemaDeclCXX.cpp1362 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()
DTreeTransform.h2607 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()
DSemaDecl.cpp274 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()
DSemaType.cpp2247 = static_cast<NestedNameSpecifier*>(SS.getScopeRep()); in GetFullTypeForDeclarator()
3965 NNS = static_cast<NestedNameSpecifier *>(SS.getScopeRep()); in getElaboratedType()
DSemaCodeComplete.cpp3674 if (!SS.getScopeRep() || !CodeCompleter) in CodeCompleteQualifiedId()
3692 NestedNameSpecifier *NNS = (NestedNameSpecifier *)SS.getScopeRep(); in CodeCompleteQualifiedId()
DSemaExprCXX.cpp76 NestedNameSpecifier *NNS = (NestedNameSpecifier *)SS.getScopeRep(); in getDestructorName()
/external/clang/include/clang/Sema/
DDeclSpec.h72 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()