Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DScope.h496 void PushUsingDirective(UsingDirectiveDecl *UDir) { in PushUsingDirective() argument
497 UsingDirectives.push_back(UDir); in PushUsingDirective()
H A DSema.h5667 void PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir);
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaDeclCXX.cpp11452 UsingDirectiveDecl *UDir = nullptr; in ActOnUsingDirective() local
11501 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc, in ActOnUsingDirective()
11510 PushUsingDirective(S, UDir); in ActOnUsingDirective()
11515 if (UDir) in ActOnUsingDirective()
11516 ProcessDeclAttributeList(S, UDir, AttrList); in ActOnUsingDirective()
11518 return UDir; in ActOnUsingDirective()
11521 void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) { in PushUsingDirective() argument
11527 Ctx->addDecl(UDir); in PushUsingDirective()
11531 S->PushUsingDirective(UDir); in PushUsingDirective()