Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DScope.h625 void PushUsingDirective(UsingDirectiveDecl *UDir) { in PushUsingDirective() argument
626 UsingDirectives.push_back(UDir); in PushUsingDirective()
H A DSema.h5242 void PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir);
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclCXX.cpp12438 UsingDirectiveDecl *UDir = nullptr; in ActOnUsingDirective() local
12487 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc, in ActOnUsingDirective()
12496 PushUsingDirective(S, UDir); in ActOnUsingDirective()
12501 if (UDir) { in ActOnUsingDirective()
12502 ProcessDeclAttributeList(S, UDir, AttrList); in ActOnUsingDirective()
12503 ProcessAPINotes(UDir); in ActOnUsingDirective()
12506 return UDir; in ActOnUsingDirective()
12509 void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) { in PushUsingDirective() argument
12515 Ctx->addDecl(UDir); in PushUsingDirective()
12519 S->PushUsingDirective(UDir); in PushUsingDirective()