Searched defs:Using (Results 1 - 4 of 4) sorted by relevance

/external/clang/test/SemaCXX/
H A Dcxx11-user-defined-literals.cpp69 namespace Using { namespace
/external/clang/include/clang/AST/
H A DDeclCXX.h2747 UsingDecl *Using, NamedDecl *Target)
2750 UsingOrNextShadow(reinterpret_cast<NamedDecl *>(Using)) {
2771 SourceLocation Loc, UsingDecl *Using,
2773 return new (C, DC) UsingShadowDecl(C, DC, Loc, Using, Target);
2850 : NamedDecl(Using, DC, NameInfo.getLoc(), NameInfo.getName()),
2952 static bool classofKind(Kind K) { return K == Using; }
2746 UsingShadowDecl(ASTContext &C, DeclContext *DC, SourceLocation Loc, UsingDecl *Using, NamedDecl *Target) argument
2770 Create(ASTContext &C, DeclContext *DC, SourceLocation Loc, UsingDecl *Using, NamedDecl *Target) argument
/external/clang/lib/Sema/
H A DSemaDeclCXX.cpp824 case Decl::Using:
7264 bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig, argument
7297 Diag(Using->getLocation(),
7299 << Using->getQualifierLoc().getSourceRange();
7304 Diag(Using->getQualifierLoc().getBeginLoc(),
7306 << Using->getQualifier()
7308 << Using->getQualifierLoc().getSourceRange();
7350 Diag(Using->getLocation(), diag::err_using_decl_conflict);
7362 Diag(Using->getLocation(), diag::err_using_decl_conflict);
7377 Diag(Using
[all...]
H A DTreeTransform.h9932 UsingDecl *Using = cast<UsingDecl>(D); local
9933 assert(Using->hasTypename() &&
9937 assert(++Using->shadow_begin() == Using->shadow_end());
9938 Ty = cast<TypeDecl>((*Using->shadow_begin())->getTargetDecl());

Completed in 119 milliseconds