/external/clang/include/clang/Sema/ |
TypoCorrection.h | 26 NestedNameSpecifier *NNS=NULL, unsigned distance=0) 28 CorrectionNameSpec(NNS), 32 TypoCorrection(NamedDecl *Name, NestedNameSpecifier *NNS=NULL, 35 CorrectionNameSpec(NNS), 39 TypoCorrection(DeclarationName Name, NestedNameSpecifier *NNS=NULL, 42 CorrectionNameSpec(NNS), 60 void setCorrectionSpecifier(NestedNameSpecifier* NNS) { 61 CorrectionNameSpec = NNS;
|
Sema.h | [all...] |
/external/clang/lib/Sema/ |
SemaCXXScopeSpec.cpp | 86 NestedNameSpecifier *NNS 88 if (NNS->isDependent()) { 91 if (CXXRecordDecl *Record = getCurrentInstantiationOf(NNS)) 95 const Type *NNSType = NNS->getAsType(); 138 switch (NNS->getKind()) { 144 return NNS->getAsNamespace(); 147 return NNS->getAsNamespaceAlias()->getNamespace(); 151 const TagType *Tag = NNS->getAsType()->getAs<TagType>(); 168 NestedNameSpecifier *NNS 170 return NNS->isDependent() [all...] |
SemaTemplate.cpp | [all...] |
SemaType.cpp | [all...] |
SemaLookup.cpp | [all...] |
SemaTemplateInstantiate.cpp | [all...] |
SemaTemplateDeduction.cpp | [all...] |
TreeTransform.h | 386 NestedNameSpecifierLoc NNS, [all...] |
SemaCodeComplete.cpp | [all...] |
SemaExprCXX.cpp | 76 NestedNameSpecifier *NNS = (NestedNameSpecifier *)SS.getScopeRep(); 110 } else if (LookAtPrefix && (Prefix = NNS->getPrefix())) { [all...] |
/external/clang/include/clang/AST/ |
TemplateName.h | 398 QualifiedTemplateName(NestedNameSpecifier *NNS, bool TemplateKeyword, 400 : Qualifier(NNS, TemplateKeyword? 1 : 0), 423 static void Profile(llvm::FoldingSetNodeID &ID, NestedNameSpecifier *NNS, 425 ID.AddPointer(NNS); 524 static void Profile(llvm::FoldingSetNodeID &ID, NestedNameSpecifier *NNS, 526 ID.AddPointer(NNS); 531 static void Profile(llvm::FoldingSetNodeID &ID, NestedNameSpecifier *NNS, 533 ID.AddPointer(NNS);
|
NestedNameSpecifier.h | 470 NestedNameSpecifier *NNS) { 471 DB.AddTaggedVal(reinterpret_cast<intptr_t>(NNS),
|
RecursiveASTVisitor.h | 182 bool TraverseNestedNameSpecifier(NestedNameSpecifier *NNS); 188 bool TraverseNestedNameSpecifierLoc(NestedNameSpecifierLoc NNS); 501 NestedNameSpecifier *NNS) { 502 if (!NNS) 505 if (NNS->getPrefix()) 506 TRY_TO(TraverseNestedNameSpecifier(NNS->getPrefix())); 508 switch (NNS->getKind()) { 517 TRY_TO(TraverseType(QualType(NNS->getAsType(), 0))); 525 NestedNameSpecifierLoc NNS) { 526 if (!NNS) [all...] |
ASTContext.h | 748 NestedNameSpecifier *NNS, 751 NestedNameSpecifier *NNS, 756 NestedNameSpecifier *NNS, 760 NestedNameSpecifier *NNS, [all...] |
Type.h | [all...] |
/external/clang/lib/AST/ |
NestedNameSpecifier.cpp | 33 NestedNameSpecifier *NNS 35 if (!NNS) { 36 NNS = new (Context, 4) NestedNameSpecifier(Mockup); 37 Context.NestedNameSpecifiers.InsertNode(NNS, InsertPos); 40 return NNS; 573 for (NestedNameSpecifier *NNS = Qualifier; NNS; NNS = NNS->getPrefix()) 574 Stack.push_back(NNS); [all...] |
ASTContext.cpp | [all...] |
StmtProfile.cpp | 54 void VisitNestedNameSpecifier(NestedNameSpecifier *NNS); 1041 void StmtProfiler::VisitNestedNameSpecifier(NestedNameSpecifier *NNS) { 1043 NNS = Context.getCanonicalNestedNameSpecifier(NNS); 1044 ID.AddPointer(NNS);
|
Type.cpp | [all...] |
/external/clang/lib/Serialization/ |
ASTWriter.cpp | [all...] |
ASTReader.cpp | [all...] |
/external/clang/include/clang/Serialization/ |
ASTWriter.h | 491 void AddNestedNameSpecifier(NestedNameSpecifier *NNS, RecordDataImpl &Record); 494 void AddNestedNameSpecifierLoc(NestedNameSpecifierLoc NNS,
|
/external/clang/tools/libclang/ |
CIndex.cpp | 321 bool VisitNestedNameSpecifier(NestedNameSpecifier *NNS, SourceRange Range); 322 bool VisitNestedNameSpecifierLoc(NestedNameSpecifierLoc NNS); [all...] |