Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Edit/
H A DEditedSource.h57 SourceLocation UseLoc; member
60 return std::tie(Identifier, ImmediateExpansionLoc, UseLoc) ==
62 Other.UseLoc);
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaAccess.cpp1612 Sema::AccessResult Sema::CheckConstructorAccess(SourceLocation UseLoc, in CheckConstructorAccess() argument
1651 return CheckConstructorAccess(UseLoc, Constructor, Found, Entity, PD); in CheckConstructorAccess()
1655 Sema::AccessResult Sema::CheckConstructorAccess(SourceLocation UseLoc, in CheckConstructorAccess() argument
1693 return CheckAccess(*this, UseLoc, AccessEntity); in CheckConstructorAccess()
1717 Sema::AccessResult Sema::CheckMemberAccess(SourceLocation UseLoc, in CheckMemberAccess() argument
1728 return CheckAccess(*this, UseLoc, Entity); in CheckMemberAccess()
1733 Sema::CheckStructuredBindingMemberAccess(SourceLocation UseLoc, in CheckStructuredBindingMemberAccess() argument
1744 return CheckAccess(*this, UseLoc, Entity); in CheckStructuredBindingMemberAccess()
H A DSema.cpp690 SourceLocation UseLoc = Undef.second; in checkUndefinedButUsed() local
723 if (UseLoc.isValid()) in checkUndefinedButUsed()
724 S.Diag(UseLoc, diag::note_used_here); in checkUndefinedButUsed()
H A DSemaLookup.cpp5069 void Sema::diagnoseMissingImport(SourceLocation UseLoc, NamedDecl *Decl, in diagnoseMissingImport() argument
5095 Diag(UseLoc, diag::err_module_unimported_use_multiple) in diagnoseMissingImport()
5098 UseLoc, Modules[0], DeclLoc)) { in diagnoseMissingImport()
5104 Diag(UseLoc, diag::err_module_unimported_use_header) in diagnoseMissingImport()
5109 Diag(UseLoc, diag::err_module_unimported_use) in diagnoseMissingImport()
5135 createImplicitModuleImportForErrorRecovery(UseLoc, Modules[0]); in diagnoseMissingImport()
H A DSemaDeclCXX.cpp6225 SourceLocation UseLoc; member in Sema::InheritedConstructorInfo
6234 InheritedConstructorInfo(Sema &S, SourceLocation UseLoc, in InheritedConstructorInfo() argument
6236 : S(S), UseLoc(UseLoc) { in InheritedConstructorInfo()
6267 S.Diag(UseLoc, diag::err_ambiguous_inherited_constructor) in InheritedConstructorInfo()
6296 S.findInheritingConstructor(UseLoc, Ctor, It->second), in findConstructorForBase()
/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DMIRCanonicalizerPass.cpp246 const unsigned UseLoc = getInstrIdx(*UseInst); in rescheduleCanonically() local
247 const unsigned Delta = (UseLoc - DefLoc); in rescheduleCanonically()
251 if (DefLoc >= UseLoc) in rescheduleCanonically()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Edit/
H A DEditedSource.cpp90 std::tie(ArgUse.ImmediateExpansionLoc, ArgUse.UseLoc) != in canInsertInOffset()
91 std::tie(U.ImmediateExpansionLoc, U.UseLoc); in canInsertInOffset()
/freebsd-12.1/contrib/llvm/lib/Analysis/
H A DMemorySSA.cpp256 const MemoryLocation &UseLoc, in instructionClobbersQuery() argument
276 AR = AA.alias(MemoryLocation(II->getArgOperand(1)), UseLoc); in instructionClobbersQuery()
298 ModRefInfo I = AA.getModRefInfo(DefInst, UseLoc); in instructionClobbersQuery()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/
H A DParser.cpp2173 SourceLocation UseLoc, in ParseModuleName() argument
2180 Actions.CodeCompleteModuleImport(UseLoc, Path); in ParseModuleName()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h779 void addContextNote(SourceLocation UseLoc) { in addContextNote() argument
784 Ctx.PointOfInstantiation = UseLoc; in addContextNote()
4926 void DefineInheritingConstructor(SourceLocation UseLoc,
6075 AccessResult CheckMemberAccess(SourceLocation UseLoc,
6079 CheckStructuredBindingMemberAccess(SourceLocation UseLoc,
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Parse/
H A DParser.h2977 SourceLocation UseLoc,