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.h605 void PushUsingDirective(UsingDirectiveDecl *UDir) { in PushUsingDirective() argument
606 UsingDirectives.push_back(UDir); in PushUsingDirective()
H A DSema.h4827 void PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir);
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclCXX.cpp12110 UsingDirectiveDecl *UDir = nullptr; in ActOnUsingDirective() local
12159 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc, in ActOnUsingDirective()
12168 PushUsingDirective(S, UDir); in ActOnUsingDirective()
12173 if (UDir) { in ActOnUsingDirective()
12174 ProcessDeclAttributeList(S, UDir, AttrList); in ActOnUsingDirective()
12175 ProcessAPINotes(UDir); in ActOnUsingDirective()
12178 return UDir; in ActOnUsingDirective()
12181 void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) { in PushUsingDirective() argument
12187 Ctx->addDecl(UDir); in PushUsingDirective()
12191 S->PushUsingDirective(UDir); in PushUsingDirective()
[all...]