Searched refs:LSPLoc (Results 1 – 2 of 2) sorted by relevance
140 Location LSPLoc; in toLSPLocation() local141 LSPLoc.uri = std::move(*U); in toLSPLocation()142 LSPLoc.range.start.line = Loc.Start.line(); in toLSPLocation()143 LSPLoc.range.start.character = Loc.Start.column(); in toLSPLocation()144 LSPLoc.range.end.line = Loc.End.line(); in toLSPLocation()145 LSPLoc.range.end.character = Loc.End.column(); in toLSPLocation()147 return LSPLoc; in toLSPLocation()1267 auto LSPLoc = toLSPLocation(R.Location, *MainFilePath); in findReferences() local1269 if (!LSPLoc || LSPLoc->uri.file() == *MainFilePath) in findReferences()1272 Results.References.push_back(std::move(*LSPLoc)); in findReferences()
130 auto LSPLoc = sourceLocToPosition(SM, Loc); in getTokenRange() local132 Pos.setLine(LSPLoc.line); in getTokenRange()133 Pos.setColumn(LSPLoc.character); in getTokenRange()