HomeSort by relevance Sort by last modified time
    Searched refs:NNS (Results 1 - 25 of 25) sorted by null

  /external/clang/include/clang/Sema/
TypoCorrection.h 27 NestedNameSpecifier *NNS=0, unsigned distance=0)
29 CorrectionNameSpec(NNS),
35 TypoCorrection(NamedDecl *Name, NestedNameSpecifier *NNS=0,
38 CorrectionNameSpec(NNS),
44 TypoCorrection(DeclarationName Name, NestedNameSpecifier *NNS=0,
47 CorrectionNameSpec(NNS),
63 void setCorrectionSpecifier(NestedNameSpecifier* NNS) {
64 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()) {
143 return NNS->getAsNamespace();
146 return NNS->getAsNamespaceAlias()->getNamespace();
150 const TagType *Tag = NNS->getAsType()->getAs<TagType>();
167 NestedNameSpecifier *NNS
169 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...]
SemaDecl.cpp 159 NestedNameSpecifier *NNS = Correction.getCorrectionSpecifier();
161 if (SS && NNS) {
162 NewSS.MakeTrivial(Context, NNS, SourceRange(NameLoc));
165 if (Correction && (NNS || NewII != &II) &&
187 if (SS && NNS)
188 SS->MakeTrivial(Context, NNS, SourceRange(NameLoc));
    [all...]
SemaExprCXX.cpp 76 NestedNameSpecifier *NNS = (NestedNameSpecifier *)SS.getScopeRep();
110 } else if (LookAtPrefix && (Prefix = NNS->getPrefix())) {
    [all...]
  /external/clang/include/clang/AST/
TemplateName.h 395 QualifiedTemplateName(NestedNameSpecifier *NNS, bool TemplateKeyword,
397 : Qualifier(NNS, TemplateKeyword? 1 : 0),
420 static void Profile(llvm::FoldingSetNodeID &ID, NestedNameSpecifier *NNS,
422 ID.AddPointer(NNS);
521 static void Profile(llvm::FoldingSetNodeID &ID, NestedNameSpecifier *NNS,
523 ID.AddPointer(NNS);
528 static void Profile(llvm::FoldingSetNodeID &ID, NestedNameSpecifier *NNS,
530 ID.AddPointer(NNS);
NestedNameSpecifier.h 466 NestedNameSpecifier *NNS) {
467 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 780 NestedNameSpecifier *NNS,
783 NestedNameSpecifier *NNS,
788 NestedNameSpecifier *NNS,
792 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);
1046 void StmtProfiler::VisitNestedNameSpecifier(NestedNameSpecifier *NNS) {
1048 NNS = Context.getCanonicalNestedNameSpecifier(NNS);
1049 ID.AddPointer(NNS);
Type.cpp     [all...]
  /external/clang/lib/Serialization/
ASTWriter.cpp     [all...]
ASTReader.cpp     [all...]
  /external/clang/include/clang/Serialization/
ASTWriter.h 505 void AddNestedNameSpecifier(NestedNameSpecifier *NNS, RecordDataImpl &Record);
508 void AddNestedNameSpecifierLoc(NestedNameSpecifierLoc NNS,
  /external/clang/tools/libclang/
CIndex.cpp 322 bool VisitNestedNameSpecifier(NestedNameSpecifier *NNS, SourceRange Range);
323 bool VisitNestedNameSpecifierLoc(NestedNameSpecifierLoc NNS);
    [all...]

Completed in 603 milliseconds