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

/external/clang/test/SemaCXX/
H A Dcxx11-user-defined-literals.cpp69 namespace Using { namespace
/external/chromium/testing/gmock/scripts/generator/cpp/
H A Dast.py203 class Using(Node): class in inherits:Node
682 # Using a deque should be even better since we access from both sides.
1581 return Using(tokens[0].start, tokens[0].end, tokens)
/external/clang/include/clang/AST/
H A DDeclCXX.h2633 UsingShadowDecl(DeclContext *DC, SourceLocation Loc, UsingDecl *Using, argument
2637 UsingOrNextShadow(reinterpret_cast<NamedDecl *>(Using)) {
2647 SourceLocation Loc, UsingDecl *Using,
2649 return new (C) UsingShadowDecl(DC, Loc, Using, Target);
2711 : NamedDecl(Using, DC, NameInfo.getLoc(), NameInfo.getName()),
2808 static bool classofKind(Kind K) { return K == Using; }
2646 Create(ASTContext &C, DeclContext *DC, SourceLocation Loc, UsingDecl *Using, NamedDecl *Target) argument
/external/clang/lib/Sema/
H A DSemaDeclCXX.cpp814 case Decl::Using:
6845 bool Sema::CheckUsingShadowDecl(UsingDecl *Using, NamedDecl *Orig, argument
6877 Diag(Using->getLocation(),
6879 << Using->getQualifierLoc().getSourceRange();
6884 Diag(Using->getQualifierLoc().getBeginLoc(),
6886 << Using->getQualifier()
6888 << Using->getQualifierLoc().getSourceRange();
6929 Diag(Using->getLocation(), diag::err_using_decl_conflict);
6941 Diag(Using->getLocation(), diag::err_using_decl_conflict);
6956 Diag(Using
[all...]
H A DTreeTransform.h9387 UsingDecl *Using = cast<UsingDecl>(D); local
9388 assert(Using->hasTypename() &&
9392 assert(++Using->shadow_begin() == Using->shadow_end());
9393 Ty = cast<TypeDecl>((*Using->shadow_begin())->getTargetDecl());

Completed in 184 milliseconds