HomeSort by: relevance | last modified time | path
    Searched refs:getScopeRep (Results 1 - 15 of 15) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaCXXScopeSpec.cpp 79 NestedNameSpecifier *NNS = SS.getScopeRep();
171 return SS.getScopeRep()->isDependent();
911 assert(DTN->getQualifier() == SS.getScopeRep());
1002 Annotation->NNS = SS.getScopeRep();
1028 NestedNameSpecifier *Qualifier = SS.getScopeRep();
SemaTemplateVariadic.cpp 439 if (!SS.getScopeRep() ||
440 !SS.getScopeRep()->containsUnexpandedParameterPack())
445 .TraverseNestedNameSpecifier(SS.getScopeRep());
959 if (Chunk.Mem.Scope().getScopeRep() &&
960 Chunk.Mem.Scope().getScopeRep()->containsUnexpandedParameterPack())
SemaExprMember.cpp 1311 << 1 << SS.getScopeRep()
1474 << 0 << SS.getScopeRep() << FixItHint::CreateRemoval(SS.getRange());
1710 = (!SS.isSet() ? nullptr : FindFirstQualifierInScope(S, SS.getScopeRep()));
1826 ExprResult Base = PerformObjectMemberConversion(BaseExpr, SS.getScopeRep(),
SemaTemplate.cpp 285 NestedNameSpecifier *Qualifier = SS.getScopeRep();
360 NestedNameSpecifier *Qualifier = (NestedNameSpecifier*)SS->getScopeRep();
746 if (NestedNameSpecifier *NNS = SS.getScopeRep())
1000 Name = Context.getQualifiedTemplateName(SS.getScopeRep(),
1755 << SS.getScopeRep() << SS.getRange();
3008 NestedNameSpecifierLoc NNSLoc(SS.getScopeRep(), SS.location_data());
3068 if (SS.getScopeRep()) {
3073 T = QualType(SS.getScopeRep()->getAsType(), 0);
3924 << SS.getScopeRep() << TemplateII->getName();
3999 Result = Context.getElaboratedType(ETK_None, SS.getScopeRep(), Result)
    [all...]
SemaExprCXX.cpp 52 NestedNameSpecifier *NNS = SS.getScopeRep();
94 if (CurClass->isDependentContext() && !EnteringContext && SS.getScopeRep()) {
95 QualType T = Context.getDependentNameType(ETK_None, SS.getScopeRep(), &II);
328 SS.isSet() ? SS.getScopeRep()->getPrefix() : nullptr) {
388 if (SS.getScopeRep()->getPrefix()) {
493 switch (SS.getScopeRep()->getKind()) {
502 << SS.getScopeRep();
SemaLookup.cpp 2421 auto *NNS = SS.getScopeRep();
2457 NestedNameSpecifier *NNS = SS->getScopeRep();
4329 (SS && SS->isValid()) ? SS->getScopeRep() : nullptr) {
4473 SS->getScopeRep()->print(OldOStream, SemaRef.getPrintingPolicy());
4510 CurScopeSpec ? CurScopeSpec->getScopeRep() : nullptr) {
SemaDeclCXX.cpp 4146 if (SS.getScopeRep() || TemplateTypeTy)
4310 BaseType = Context.getElaboratedType(ETK_None, SS.getScopeRep(),
11455 Qualifier = SS.getScopeRep();
11599 if (!SS.getScopeRep()->containsUnexpandedParameterPack() &&
12142 UsingValidatorCCC CCC(HasTypenameKeyword, IsInstantiation, SS.getScopeRep(),
12306 NestedNameSpecifier *Qual = SS.getScopeRep();
12487 << SS.getScopeRep() << SS.getRange();
12513 << SS.getScopeRep()
12560 << SS.getScopeRep()
16358 << SS.getScopeRep() << SS.getRange() << cast<CXXRecordDecl>(CurContext)
    [all...]
SemaDecl.cpp 644 if (SS->getScopeRep()->getKind() == NestedNameSpecifier::Super)
647 const Type *Ty = SS->getScopeRep()->getAsType();
751 else if (SS->isValid() && SS->getScopeRep()->containsErrors()) {
760 << SS->getScopeRep() << II->getName()
1104 Context.getQualifiedTemplateName(SS.getScopeRep(),
5698 NestedNameSpecifierLoc SpecLoc(SS.getScopeRep(), SS.location_data());
5750 << D.getCXXScopeSpec().getScopeRep()
9732 (D.getCXXScopeSpec().getScopeRep()->isDependent() ||
SemaType.cpp 3797 for (NestedNameSpecifier *NNS = D.getCXXScopeSpec().getScopeRep(); NNS;
5347 .getScopeRep()
5394 NestedNameSpecifier *NNS = SS.getScopeRep();
8845 NNS = SS.getScopeRep();
TreeTransform.h 4127 if (SS.getScopeRep() == NNS.getNestedNameSpecifier() &&
4135 return NestedNameSpecifierLoc(SS.getScopeRep(), NNS.getOpaqueData());
4224 SS.getScopeRep() == QTN->getQualifier() &&
4233 if (SS.getScopeRep()) {
4240 SS.getScopeRep() == DTN->getQualifier() &&
14439 return SemaRef.Context.getQualifiedTemplateName(SS.getScopeRep(), TemplateKW,
SemaExpr.cpp 2545 DefaultFilterCCC DefaultValidator(II, SS.isValid() ? SS.getScopeRep()
2554 CCC->setTypoNNS(SS.getScopeRep());
2712 D << SS.getScopeRep() << NameInfo.getName().getAsString()
SemaCodeComplete.cpp 6051 NestedNameSpecifier *NNS = SS.getScopeRep();
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
DeclSpec.h 63 /// The actual scope is described by getScopeRep().
77 NestedNameSpecifier *getScopeRep() const {
190 bool isEmpty() const { return Range.isInvalid() && getScopeRep() == nullptr; }
195 bool isInvalid() const { return Range.isValid() && getScopeRep() == nullptr; }
197 bool isValid() const { return getScopeRep() != nullptr; }
210 bool isSet() const { return getScopeRep() != nullptr; }
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseTentative.cpp 1506 if (SS.getScopeRep() && SS.getScopeRep()->isDependent()) {
ParseDeclCXX.cpp 632 !D.SS.getScopeRep()->getAsNamespace() &&
633 !D.SS.getScopeRep()->getAsNamespaceAlias()) {

Completed in 158 milliseconds