Home
last modified time | relevance | path

Searched refs:UDir (Results 1 – 3 of 3) sorted by relevance

/external/clang/include/clang/Sema/
DScope.h439 void PushUsingDirective(UsingDirectiveDecl *UDir) { in PushUsingDirective() argument
440 UsingDirectives.push_back(UDir); in PushUsingDirective()
DSema.h4131 void PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir);
/external/clang/lib/Sema/
DSemaDeclCXX.cpp7554 UsingDirectiveDecl *UDir = nullptr; in ActOnUsingDirective() local
7604 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc, in ActOnUsingDirective()
7613 PushUsingDirective(S, UDir); in ActOnUsingDirective()
7618 if (UDir) in ActOnUsingDirective()
7619 ProcessDeclAttributeList(S, UDir, AttrList); in ActOnUsingDirective()
7621 return UDir; in ActOnUsingDirective()
7624 void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) { in PushUsingDirective() argument
7630 Ctx->addDecl(UDir); in PushUsingDirective()
7634 S->PushUsingDirective(UDir); in PushUsingDirective()