Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/
H A DLookup.cpp130 SourceLocation UseLoc) { in disambiguateSpellingInScope() argument
146 UseLoc = SM.getSpellingLoc(UseLoc); in disambiguateSpellingInScope()
165 SM.getSpellingLoc(Res->getLocation()), UseLoc)) in disambiguateSpellingInScope()
186 SourceLocation UseLoc, in replaceNestedName() argument
223 UseLoc); in replaceNestedName()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Edit/
H A DEditedSource.h56 SourceLocation UseLoc; member
59 return std::tie(Identifier, ImmediateExpansionLoc, UseLoc) ==
61 Other.UseLoc);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DMIRCanonicalizerPass.cpp223 const unsigned UseLoc = getInstrIdx(*UseInst); in rescheduleCanonically() local
224 const unsigned Delta = (UseLoc - DefLoc); in rescheduleCanonically()
228 if (DefLoc >= UseLoc) in rescheduleCanonically()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp334 SourceLocation UseLoc; member
359 if (M.UseLoc.isInvalid()) in addMarker()
360 M.UseLoc = UD.DirectivePos; in addMarker()
373 if (M.UseLoc.isInvalid()) in addDirective()
374 M.UseLoc = UD.DirectivePos; in addDirective()
386 if (M.RedefLoc.isValid() && M.UseLoc.isValid()) { in finalize()
387 Diags.Report(M.UseLoc, diag::err_verify_ambiguous_marker) << Name; in finalize()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Tooling/Refactoring/
H A DLookup.h42 SourceLocation UseLoc,
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaAccess.cpp1628 Sema::AccessResult Sema::CheckConstructorAccess(SourceLocation UseLoc, in CheckConstructorAccess() argument
1667 return CheckConstructorAccess(UseLoc, Constructor, Found, Entity, PD); in CheckConstructorAccess()
1671 Sema::AccessResult Sema::CheckConstructorAccess(SourceLocation UseLoc, in CheckConstructorAccess() argument
1709 return CheckAccess(*this, UseLoc, AccessEntity); in CheckConstructorAccess()
1733 Sema::AccessResult Sema::CheckMemberAccess(SourceLocation UseLoc, in CheckMemberAccess() argument
1744 return CheckAccess(*this, UseLoc, Entity); in CheckMemberAccess()
1749 Sema::CheckStructuredBindingMemberAccess(SourceLocation UseLoc, in CheckStructuredBindingMemberAccess() argument
1760 return CheckAccess(*this, UseLoc, Entity); in CheckStructuredBindingMemberAccess()
H A DSemaLookup.cpp5361 void Sema::diagnoseMissingImport(SourceLocation UseLoc, NamedDecl *Decl, in diagnoseMissingImport() argument
5387 PP.getHeaderToIncludeForDiagnostics(UseLoc, DeclLoc)) { in diagnoseMissingImport()
5389 SourceMgr.getFileEntryForID(SourceMgr.getFileID(UseLoc))) in diagnoseMissingImport()
5398 Diag(UseLoc, diag::err_module_unimported_use_header) in diagnoseMissingImport()
5403 createImplicitModuleImportForErrorRecovery(UseLoc, Modules[0]); in diagnoseMissingImport()
5421 Diag(UseLoc, diag::err_module_unimported_use_multiple) in diagnoseMissingImport()
5425 Diag(UseLoc, diag::err_module_unimported_use) in diagnoseMissingImport()
5433 createImplicitModuleImportForErrorRecovery(UseLoc, Modules[0]); in diagnoseMissingImport()
H A DSema.cpp794 SourceLocation UseLoc = Undef.second; in checkUndefinedButUsed() local
827 if (UseLoc.isValid()) in checkUndefinedButUsed()
828 S.Diag(UseLoc, diag::note_used_here); in checkUndefinedButUsed()
H A DSemaDeclCXX.cpp6989 SourceLocation UseLoc; member in Sema::InheritedConstructorInfo
6998 InheritedConstructorInfo(Sema &S, SourceLocation UseLoc, in InheritedConstructorInfo() argument
7000 : S(S), UseLoc(UseLoc) { in InheritedConstructorInfo()
7031 S.Diag(UseLoc, diag::err_ambiguous_inherited_constructor) in InheritedConstructorInfo()
7060 S.findInheritingConstructor(UseLoc, Ctor, It->second), in findConstructorForBase()
8588 void Sema::DefineDefaultedComparison(SourceLocation UseLoc, FunctionDecl *FD, in DefineDefaultedComparison() argument
8598 Scope.addContextNote(UseLoc); in DefineDefaultedComparison()
8617 ResolveExceptionSpec(UseLoc, FD->getType()->castAs<FunctionProtoType>()); in DefineDefaultedComparison()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Edit/
H A DEditedSource.cpp89 std::tie(ArgUse.ImmediateExpansionLoc, ArgUse.UseLoc) != in canInsertInOffset()
90 std::tie(U.ImmediateExpansionLoc, U.UseLoc); in canInsertInOffset()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DMemorySSA.cpp270 instructionClobbersQuery(const MemoryDef *MD, const MemoryLocation &UseLoc, in instructionClobbersQuery() argument
311 ModRefInfo I = AA.getModRefInfo(DefInst, UseLoc); in instructionClobbersQuery()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/
H A DParser.cpp2458 SourceLocation UseLoc, in ParseModuleName() argument
2466 Actions.CodeCompleteModuleImport(UseLoc, Path); in ParseModuleName()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DSema.h1051 void addContextNote(SourceLocation UseLoc) { in addContextNote() argument
1056 Ctx.PointOfInstantiation = UseLoc; in addContextNote()
5923 void DefineInheritingConstructor(SourceLocation UseLoc,
7268 AccessResult CheckMemberAccess(SourceLocation UseLoc,
7272 CheckStructuredBindingMemberAccess(SourceLocation UseLoc,
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Parse/
H A DParser.h3450 SourceLocation UseLoc,