Home
last modified time | relevance | path

Searched refs:UseLoc (Results 1 – 13 of 13) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/Edit/
H A DEditedSource.h56 SourceLocation UseLoc; member
59 return std::tie(Identifier, ImmediateExpansionLoc, UseLoc) ==
61 Other.UseLoc);
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMIRCanonicalizerPass.cpp213 const unsigned UseLoc = getInstrIdx(*UseInst); in rescheduleCanonically() local
214 const unsigned Delta = (UseLoc - DefLoc); in rescheduleCanonically()
218 if (DefLoc >= UseLoc) in rescheduleCanonically()
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/
H A DLookup.h42 SourceLocation UseLoc,
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp332 SourceLocation UseLoc; member
357 if (M.UseLoc.isInvalid()) in addMarker()
358 M.UseLoc = UD.DirectivePos; in addMarker()
371 if (M.UseLoc.isInvalid()) in addDirective()
372 M.UseLoc = UD.DirectivePos; in addDirective()
384 if (M.RedefLoc.isValid() && M.UseLoc.isValid()) { in finalize()
385 Diags.Report(M.UseLoc, diag::err_verify_ambiguous_marker) << Name; in finalize()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaAccess.cpp1654 Sema::AccessResult Sema::CheckConstructorAccess(SourceLocation UseLoc, in CheckConstructorAccess() argument
1697 return CheckConstructorAccess(UseLoc, Constructor, Found, Entity, PD); in CheckConstructorAccess()
1700 Sema::AccessResult Sema::CheckConstructorAccess(SourceLocation UseLoc, in CheckConstructorAccess() argument
1738 return CheckAccess(*this, UseLoc, AccessEntity); in CheckConstructorAccess()
1760 Sema::AccessResult Sema::CheckMemberAccess(SourceLocation UseLoc, in CheckMemberAccess() argument
1771 return CheckAccess(*this, UseLoc, Entity); in CheckMemberAccess()
1775 Sema::CheckStructuredBindingMemberAccess(SourceLocation UseLoc, in CheckStructuredBindingMemberAccess() argument
1786 return CheckAccess(*this, UseLoc, Entity); in CheckStructuredBindingMemberAccess()
H A DSemaLookup.cpp5576 void Sema::diagnoseMissingImport(SourceLocation UseLoc, const NamedDecl *Decl, in diagnoseMissingImport() argument
5607 PP.getHeaderToIncludeForDiagnostics(UseLoc, DeclLoc)) { in diagnoseMissingImport()
5609 SourceMgr.getFileEntryForID(SourceMgr.getFileID(UseLoc))) in diagnoseMissingImport()
5619 Diag(UseLoc, diag::err_module_unimported_use_header) in diagnoseMissingImport()
5624 createImplicitModuleImportForErrorRecovery(UseLoc, Modules[0]); in diagnoseMissingImport()
5658 Diag(UseLoc, diag::err_module_unimported_use_multiple) in diagnoseMissingImport()
5662 Diag(UseLoc, diag::err_module_unimported_use) in diagnoseMissingImport()
5670 createImplicitModuleImportForErrorRecovery(UseLoc, Modules[0]); in diagnoseMissingImport()
H A DSema.cpp938 SourceLocation UseLoc = Undef.second; in checkUndefinedButUsed() local
984 if (UseLoc.isValid()) in checkUndefinedButUsed()
985 S.Diag(UseLoc, diag::note_used_here); in checkUndefinedButUsed()
H A DSemaDeclCXX.cpp7229 SourceLocation UseLoc; member in Sema::InheritedConstructorInfo
7238 InheritedConstructorInfo(Sema &S, SourceLocation UseLoc, in InheritedConstructorInfo() argument
7240 : S(S), UseLoc(UseLoc) { in InheritedConstructorInfo()
7271 S.Diag(UseLoc, diag::err_ambiguous_inherited_constructor) in InheritedConstructorInfo()
7300 S.findInheritingConstructor(UseLoc, Ctor, It->second), in findConstructorForBase()
9040 void Sema::DefineDefaultedComparison(SourceLocation UseLoc, FunctionDecl *FD, in DefineDefaultedComparison() argument
9050 Scope.addContextNote(UseLoc); in DefineDefaultedComparison()
9072 ResolveExceptionSpec(UseLoc, FD->getType()->castAs<FunctionProtoType>()); in DefineDefaultedComparison()
/freebsd/contrib/llvm-project/clang/lib/Edit/
H A DEditedSource.cpp89 std::tie(ArgUse.ImmediateExpansionLoc, ArgUse.UseLoc) != in canInsertInOffset()
90 std::tie(U.ImmediateExpansionLoc, U.UseLoc); in canInsertInOffset()
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParser.cpp2692 SourceLocation UseLoc, in ParseModuleName() argument
2700 Actions.CodeCompletion().CodeCompleteModuleImport(UseLoc, Path); in ParseModuleName()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DMemorySSA.cpp282 instructionClobbersQuery(const MemoryDef *MD, const MemoryLocation &UseLoc, in instructionClobbersQuery() argument
322 ModRefInfo I = AA.getModRefInfo(DefInst, UseLoc); in instructionClobbersQuery()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h1381 AccessResult CheckMemberAccess(SourceLocation UseLoc,
1387 CheckStructuredBindingMemberAccess(SourceLocation UseLoc,
5123 void DefineInheritingConstructor(SourceLocation UseLoc,
13092 void addContextNote(SourceLocation UseLoc) { in addContextNote() argument
13097 Ctx.PointOfInstantiation = UseLoc; in addContextNote()
/freebsd/contrib/llvm-project/clang/include/clang/Parse/
H A DParser.h3879 SourceLocation UseLoc,