Searched defs:UDir (Results 1 - 2 of 2) sorted by relevance

/external/clang/include/clang/Sema/
H A DScope.h411 void PushUsingDirective(UsingDirectiveDecl *UDir) { argument
412 UsingDirectives.push_back(UDir);
/external/clang/lib/Sema/
H A DSemaDeclCXX.cpp7095 UsingDirectiveDecl *UDir = nullptr; local
7141 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc,
7150 PushUsingDirective(S, UDir);
7155 if (UDir)
7156 ProcessDeclAttributeList(S, UDir, AttrList);
7158 return UDir;
7161 void Sema::PushUsingDirective(Scope *S, UsingDirectiveDecl *UDir) { argument
7167 Ctx->addDecl(UDir);
7171 S->PushUsingDirective(UDir);

Completed in 2280 milliseconds