Home | History | Annotate | Download | only in Sema

Lines Matching refs:UsingLoc

7539                                           SourceLocation UsingLoc,
7604 UDir = UsingDirectiveDecl::Create(Context, CurContext, UsingLoc, NamespcLoc,
7641 SourceLocation UsingLoc,
7698 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS,
8035 SourceLocation UsingLoc,
8082 if (CheckUsingDeclRedeclaration(UsingLoc, HasTypenameKeyword,
8087 if (CheckUsingDeclQualifier(UsingLoc, SS, NameInfo, IdentLoc))
8097 UsingLoc
8101 D = UnresolvedUsingValueDecl::Create(Context, CurContext, UsingLoc,
8111 UsingDecl::Create(Context, CurContext, UsingLoc, QualifierLoc, NameInfo,
8275 bool Sema::CheckUsingDeclRedeclaration(SourceLocation UsingLoc,
8333 bool Sema::CheckUsingDeclQualifier(SourceLocation UsingLoc,
8379 << FixItHint::CreateReplacement(UsingLoc, "typedef")
8390 UsingLoc, "auto &" + NameInfo.getName().getAsString() + " = ");
8393 Diag(UsingLoc, diag::note_using_decl_class_member_workaround)
8503 SourceLocation UsingLoc,
8544 TypeAliasDecl *NewTD = TypeAliasDecl::Create(Context, CurContext, UsingLoc,
8566 Diag(UsingLoc, diag::err_alias_template_extra_headers)
8580 Diag(UsingLoc, diag::err_redefinition_different_kind)
8621 TypeAliasTemplateDecl::Create(Context, CurContext, UsingLoc,
9077 SourceLocation UsingLoc = getUsingLoc(Ctor->getParent());
9081 SemaRef.Diag(UsingLoc, diag::warn_using_decl_constructor_ellipsis);
9100 declareCtor(UsingLoc, Ctor,
9145 void declareCtor(SourceLocation UsingLoc, const CXXConstructorDecl *BaseCtor,
9166 SemaRef.Diag(UsingLoc, diag::err_using_decl_constructor_conflict);
9177 SemaRef.SetDeclDeleted(Entry.DerivedCtor, UsingLoc);
9186 DeclarationNameInfo NameInfo(Name, UsingLoc);
9202 Context.getTrivialTypeSourceInfo(DerivedType, UsingLoc);
9207 Context, Derived, UsingLoc, NameInfo, DerivedType,
9223 Context.getTrivialTypeSourceInfo(FPT->getParamType(I), UsingLoc);
9225 Context, DerivedCtor, UsingLoc, UsingLoc, /*IdentifierInfo=*/nullptr,
9238 SemaRef.SetDeclDeleted(DerivedCtor, UsingLoc);
9243 FunctionTemplateDecl::Create(SemaRef.Context, Derived, UsingLoc, Name,