reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/tools/extra/clangd/CodeComplete.cpp
 1803   LSP.label = ((InsertInclude && InsertInclude->Insertion)
 1809   LSP.kind = Kind;
 1810   LSP.detail = BundleSize > 1 ? llvm::formatv("[{0} overloads]", BundleSize)
 1812   LSP.deprecated = Deprecated;
 1814     LSP.detail += "\n" + InsertInclude->Header;
 1815   LSP.documentation = Documentation;
 1816   LSP.sortText = sortText(Score.Total, Name);
 1817   LSP.filterText = Name;
 1818   LSP.textEdit = {CompletionTokenRange, RequiredQualifier + Name};
 1827     if (isRangeConsecutive(FixIt.range, LSP.textEdit->range)) {
 1828       LSP.textEdit->newText = FixIt.newText + LSP.textEdit->newText;
 1828       LSP.textEdit->newText = FixIt.newText + LSP.textEdit->newText;
 1829       LSP.textEdit->range.start = FixIt.range.start;
 1831       LSP.additionalTextEdits.push_back(FixIt);
 1835     LSP.textEdit->newText += SnippetSuffix;
 1839   LSP.insertText = LSP.textEdit->newText;
 1839   LSP.insertText = LSP.textEdit->newText;
 1840   LSP.insertTextFormat = Opts.EnableSnippets ? InsertTextFormat::Snippet
 1843     LSP.additionalTextEdits.push_back(*InsertInclude->Insertion);
 1845   return LSP;