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

  /src/external/apache2/llvm/dist/clang/tools/libclang/
CursorVisitor.h 241 bool VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D);
CIndex.cpp 1275 UnresolvedUsingTypenameDecl *D) {
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclCXX.h 3538 /// The UnresolvedUsingValueDecl or UnresolvedUsingTypenameDecl from
3565 /// always be an UnresolvedUsingValueDecl or an UnresolvedUsingTypenameDecl
3700 class UnresolvedUsingTypenameDecl
3702 public Mergeable<UnresolvedUsingTypenameDecl> {
3714 UnresolvedUsingTypenameDecl(DeclContext *DC, SourceLocation UsingLoc,
3757 static UnresolvedUsingTypenameDecl *
3763 static UnresolvedUsingTypenameDecl *
3767 UnresolvedUsingTypenameDecl *getCanonicalDecl() override {
3770 const UnresolvedUsingTypenameDecl *getCanonicalDecl() const {
TextNodeDumper.h 351 void VisitUnresolvedUsingTypenameDecl(const UnresolvedUsingTypenameDecl *D);
Type.h 131 class UnresolvedUsingTypenameDecl;
4346 UnresolvedUsingTypenameDecl *Decl;
4348 UnresolvedUsingType(const UnresolvedUsingTypenameDecl *D)
4351 Decl(const_cast<UnresolvedUsingTypenameDecl *>(D)) {}
4354 UnresolvedUsingTypenameDecl *getDecl() const { return Decl; }
4368 UnresolvedUsingTypenameDecl *D) {
TypeLoc.h 46 class UnresolvedUsingTypenameDecl;
697 UnresolvedUsingTypenameDecl *getDecl() const {
RecursiveASTVisitor.h 1840 DEF_TRAVERSE_DECL(UnresolvedUsingTypenameDecl, {
1959 // Like UnresolvedUsingTypenameDecl, but without the 'typename':
  /src/external/apache2/llvm/dist/clang/lib/Index/
USRGeneration.cpp 105 void VisitUnresolvedUsingTypenameDecl(const UnresolvedUsingTypenameDecl *D);
1000 void USRGenerator::VisitUnresolvedUsingTypenameDecl(const UnresolvedUsingTypenameDecl *D) {
IndexDecl.cpp 629 bool VisitUnresolvedUsingTypenameDecl(const UnresolvedUsingTypenameDecl *D) {
  /src/external/apache2/llvm/dist/clang/lib/AST/
DeclCXX.cpp 3131 void UnresolvedUsingTypenameDecl::anchor() {}
3133 UnresolvedUsingTypenameDecl *
3134 UnresolvedUsingTypenameDecl::Create(ASTContext &C, DeclContext *DC,
3141 return new (C, DC) UnresolvedUsingTypenameDecl(
3146 UnresolvedUsingTypenameDecl *
3147 UnresolvedUsingTypenameDecl::CreateDeserialized(ASTContext &C, unsigned ID) {
3148 return new (C, ID) UnresolvedUsingTypenameDecl(
DeclPrinter.cpp 98 void VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D);
1613 DeclPrinter::VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) {
TextNodeDumper.cpp 2057 const UnresolvedUsingTypenameDecl *D) {
ASTContext.cpp 1564 isa<UnresolvedUsingTypenameDecl>(Pattern)) &&
1568 isa<UnresolvedUsingTypenameDecl>(Inst)) &&
4510 } else if (const auto *Using = dyn_cast<UnresolvedUsingTypenameDecl>(Decl)) {
ASTImporter.cpp 516 ExpectedDecl VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D);
4733 UnresolvedUsingTypenameDecl *D) {
4751 UnresolvedUsingTypenameDecl *ToUsing;
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaTemplateVariadic.cpp 198 bool TraverseUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D) {
SemaTemplateInstantiateDecl.cpp 3165 UnresolvedUsingTypenameDecl *TD = dyn_cast<UnresolvedUsingTypenameDecl>(D);
3199 UnresolvedUsingTypenameDecl *D) {
5677 if (auto *UUD = dyn_cast<UnresolvedUsingTypenameDecl>(D))
SemaDeclCXX.cpp 12079 D = UnresolvedUsingTypenameDecl::Create(Context, CurContext,
12260 isa<UnresolvedUsingTypenameDecl>(InstantiatedFrom) ||
12350 } else if (UnresolvedUsingTypenameDecl *UD
12351 = dyn_cast<UnresolvedUsingTypenameDecl>(D)) {
TreeTransform.h 933 /// the UnresolvedUsingTypenameDecl was transformed to.
14357 "UnresolvedUsingTypenameDecl transformed to non-typename using");
14363 assert(isa<UnresolvedUsingTypenameDecl>(D) &&
14364 "UnresolvedUsingTypenameDecl transformed to non-using decl");
14365 Ty = cast<UnresolvedUsingTypenameDecl>(D);
SemaCodeComplete.cpp 7421 } else if (ND && isa<UnresolvedUsingTypenameDecl>(ND)) {
SemaDecl.cpp 1610 isa<UnresolvedUsingTypenameDecl>(D) ||
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderDecl.cpp 330 void VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D);
1702 UnresolvedUsingTypenameDecl *D) {
3246 if (const auto *UX = dyn_cast<UnresolvedUsingTypenameDecl>(X))
3249 cast<UnresolvedUsingTypenameDecl>(Y)->getQualifier());
3851 D = UnresolvedUsingTypenameDecl::CreateDeserialized(Context, ID);
ASTWriterDecl.cpp 70 void VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D);
1328 UnresolvedUsingTypenameDecl *D) {
  /src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
ASTMatchersInternal.cpp 850 const internal::VariadicDynCastAllOfMatcher<Decl, UnresolvedUsingTypenameDecl>
851 unresolvedUsingTypenameDecl;
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Syntax/
BuildTree.cpp 1566 bool WalkUpFromUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *S) {
  /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
ASTMatchers.h 1812 /// unresolvedUsingTypenameDecl()
1815 UnresolvedUsingTypenameDecl>
1816 unresolvedUsingTypenameDecl;

Completed in 122 milliseconds