HomeSort by relevance Sort by last modified time
    Searched refs:NNS (Results 26 - 50 of 125) sorted by null

12 3 4 5

  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/AST/
ODRHash.h 72 void AddNestedNameSpecifier(const NestedNameSpecifier *NNS);
NestedNameSpecifier.h 508 NestedNameSpecifier *NNS) {
509 DB.AddTaggedVal(reinterpret_cast<intptr_t>(NNS),
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/AST/
ODRHash.h 72 void AddNestedNameSpecifier(const NestedNameSpecifier *NNS);
NestedNameSpecifier.h 508 NestedNameSpecifier *NNS) {
509 DB.AddTaggedVal(reinterpret_cast<intptr_t>(NNS),
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
ODRHash.h 72 void AddNestedNameSpecifier(const NestedNameSpecifier *NNS);
NestedNameSpecifier.h 508 NestedNameSpecifier *NNS) {
509 DB.AddTaggedVal(reinterpret_cast<intptr_t>(NNS),
  /external/clang/lib/ASTMatchers/
ASTMatchFinder.cpp 119 else if (const NestedNameSpecifier *NNS =
121 traverse(*NNS);
185 bool TraverseNestedNameSpecifier(NestedNameSpecifier *NNS) {
187 return (NNS == nullptr) || traverse(*NNS);
189 bool TraverseNestedNameSpecifierLoc(NestedNameSpecifierLoc NNS) {
190 if (!NNS)
193 if (!match(*NNS.getNestedNameSpecifier()))
195 return traverse(NNS);
231 bool baseTraverse(const NestedNameSpecifier &NNS) {
    [all...]
  /external/clang/lib/Sema/
SemaCXXScopeSpec.cpp 81 NestedNameSpecifier *NNS = SS.getScopeRep();
82 if (NNS->isDependent()) {
85 if (CXXRecordDecl *Record = getCurrentInstantiationOf(NNS))
89 const Type *NNSType = NNS->getAsType();
142 switch (NNS->getKind()) {
147 return NNS->getAsNamespace();
150 return NNS->getAsNamespaceAlias()->getNamespace();
154 const TagType *Tag = NNS->getAsType()->getAs<TagType>();
163 return NNS->getAsRecordDecl();
180 /// \param NNS a dependent nested name specifier
    [all...]
SemaLookup.cpp     [all...]
SemaCoroutine.cpp 89 auto *NNS = NestedNameSpecifier::Create(S.Context, nullptr, Std);
90 NNS = NestedNameSpecifier::Create(S.Context, NNS, false,
92 PromiseType = S.Context.getElaboratedType(ETK_None, NNS, PromiseType);
  /external/clang/lib/AST/
NestedNameSpecifier.cpp 34 NestedNameSpecifier *NNS
36 if (!NNS) {
37 NNS = new (Context, llvm::alignOf<NestedNameSpecifier>())
39 Context.NestedNameSpecifiers.InsertNode(NNS, InsertPos);
42 return NNS;
153 llvm_unreachable("Invalid NNS Kind!");
186 llvm_unreachable("Invalid NNS Kind!");
216 llvm_unreachable("Invalid NNS Kind!");
238 llvm_unreachable("Invalid NNS Kind!");
257 llvm_unreachable("Invalid NNS Kind!")
    [all...]
ASTTypeTraits.cpp 112 else if (const NestedNameSpecifier *NNS = get<NestedNameSpecifier>())
113 NNS->print(OS, PP);
  /external/clang/lib/Tooling/Core/
QualTypeNames.cpp 76 NestedNameSpecifier *NNS = nullptr;
85 NNS = QTName->getQualifier();
87 Ctx, NNS, WithGlobalNsPrefix);
88 if (QNNS != NNS) {
90 NNS = QNNS;
92 NNS = nullptr;
95 NNS = createNestedNameSpecifierForScopeOf(
98 if (NNS) {
99 TName = Ctx.getQualifiedTemplateName(NNS,
275 llvm_unreachable("bad NNS kind")
    [all...]
  /external/clang/lib/Index/
IndexingContext.h 94 void indexNestedNameSpecifierLoc(NestedNameSpecifierLoc NNS,
  /external/clang/include/clang/AST/
NestedNameSpecifier.h 508 NestedNameSpecifier *NNS) {
509 DB.AddTaggedVal(reinterpret_cast<intptr_t>(NNS),
  /external/clang/tools/libclang/
CursorVisitor.h 245 bool VisitNestedNameSpecifier(NestedNameSpecifier *NNS, SourceRange Range);
246 bool VisitNestedNameSpecifierLoc(NestedNameSpecifierLoc NNS);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/AST/
NestedNameSpecifier.h 508 NestedNameSpecifier *NNS) {
509 DB.AddTaggedVal(reinterpret_cast<intptr_t>(NNS),
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/AST/
NestedNameSpecifier.h 508 NestedNameSpecifier *NNS) {
509 DB.AddTaggedVal(reinterpret_cast<intptr_t>(NNS),
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/AST/
NestedNameSpecifier.h 508 NestedNameSpecifier *NNS) {
509 DB.AddTaggedVal(reinterpret_cast<intptr_t>(NNS),
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
NestedNameSpecifier.h 508 NestedNameSpecifier *NNS) {
509 DB.AddTaggedVal(reinterpret_cast<intptr_t>(NNS),
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/AST/
NestedNameSpecifier.h 508 NestedNameSpecifier *NNS) {
509 DB.AddTaggedVal(reinterpret_cast<intptr_t>(NNS),
  /external/clang/include/clang/Sema/
SemaInternal.h 248 NestedNameSpecifier *&NNS);
295 NestedNameSpecifier *NNS = nullptr, bool isKeyword = false);
  /external/clang/unittests/ASTMatchers/
ASTMatchersTest.h 331 } else if (const NestedNameSpecifier *NNS =
334 NNS->print(OS, PrintingPolicy(LangOptions()));
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/Sema/
SemaInternal.h 248 NestedNameSpecifier *&NNS);
295 NestedNameSpecifier *NNS = nullptr, bool isKeyword = false);
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Sema/
SemaInternal.h 248 NestedNameSpecifier *&NNS);
295 NestedNameSpecifier *NNS = nullptr, bool isKeyword = false);

Completed in 326 milliseconds

12 3 4 5