summaryrefslogtreecommitdiffstats
path: root/clangd/Quality.cpp
Commit message (Expand)AuthorAgeFilesLines
* [clangd] Boost code completion results that were named in the last few lines.Sam McCall2019-05-061-0/+17
* Moved Ref into its own header and implementation fileDmitri Gribenko2019-02-281-1/+2
* [clangd] Penalize file-scope symbols in the ranking for non-completion queriesSam McCall2019-02-011-4/+17
* Update the file headers across all of the LLVM projects in the monorepoChandler Carruth2019-01-191-4/+3
* [clangd] Remove 'using namespace llvm' from .cpp files. NFCIlya Biryukov2019-01-071-43/+45
* [clangd] Penalize destructor and overloaded operators in code completion.Eric Liu2018-11-301-2/+10
* [clangd] Fix test broken in r347754.Eric Liu2018-11-281-1/+1
* [clangd] Less penalty for cross-namespace completions.Eric Liu2018-11-281-2/+2
* [clangd] Add type boosting in code completionIlya Biryukov2018-11-261-0/+7
* Fix MSVC "truncation from 'double' to 'float'" warnings. NFCI.Simon Pilgrim2018-10-241-3/+3
* [clangd] Downrank members from base classEric Liu2018-10-241-1/+5
* [clangd] Namespace style cleanup in cpp files. NFC.Sam McCall2018-10-201-8/+7
* Fix MSVC "truncation from 'double' to 'float'" warning. NFCI.Simon Pilgrim2018-10-201-1/+1
* [clangd] Names that are not spelled in source code are reserved.Eric Liu2018-10-181-0/+5
* [clangd] Support scope proximity in code completion.Eric Liu2018-10-171-12/+48
* [clangd] Add "Deprecated" field to Symbol and CodeCompletion.Eric Liu2018-09-061-3/+2
* [clangd] Tune macro quality scoring for code completion.Eric Liu2018-09-051-1/+1
* NFC: Enforce good formatting across multiple clang-tools-extra filesKirill Bobyrev2018-08-141-2/+2
* [clangd] Introduce scoring mechanism for SignatureInformations.Kadir Cetinkaya2018-08-131-0/+12
* Added functionality to suggest FixIts for conversion of '->' to '.' and vice ...Kadir Cetinkaya2018-08-081-0/+7
* [clangd] Fix (most) naming warnings from clang-tidy. NFCIlya Biryukov2018-07-261-8/+8
* [clangd] Use a sigmoid style function for #usages boost in symbol quality.Eric Liu2018-07-251-2/+12
* [clangd] Tune down quality score for class constructors so that it's ranked a...Eric Liu2018-07-241-1/+6
* [clangd] Penalize non-instance members when accessed via class instances.Eric Liu2018-07-231-0/+34
* [clangd] Uprank delcarations when "using q::name" is present in the main fileKirill Bobyrev2018-07-111-2/+15
* [NFS] Wipe trailing whitespacesKirill Bobyrev2018-07-051-62/+63
* Fix -Wunused-variable warning. NFCI.Simon Pilgrim2018-07-051-1/+1
* [clangd] Treat class constructor as in the same scope as the class in ranking.Eric Liu2018-07-051-0/+5
* [clangd] Incorporate transitive #includes into code complete proximity scoring.Sam McCall2018-07-031-63/+18
* [clangd] Use log10 instead of the natural logrithm for usage boost.Eric Liu2018-06-281-2/+3
* [clangd] Sema ranking tweaks: downrank keywords and injected names.Sam McCall2018-06-271-7/+11
* [clangd] Fix proximity signal output format. NFCEric Liu2018-06-211-4/+4
* [clangd] Boost completion score according to file proximity.Eric Liu2018-06-151-6/+73
* [clangd] Boost keyword completions.Sam McCall2018-06-141-4/+27
* [clangd] Downrank symbols with reserved names (score *= 0.1)Sam McCall2018-06-081-0/+16
* [clangd] Code completion: drop explicit injected names/operators, ignore Sema...Sam McCall2018-06-071-8/+0
* [clangd] fix unintended fallthrough in scope-based scoringSam McCall2018-06-071-0/+3
* Add semicolon to recent MSVC fix.Tim Northover2018-06-061-1/+1
* Fix MSVC 'implicit double to float truncation and 'not all control paths retu...Simon Pilgrim2018-06-061-3/+4
* [clangd] Boost fuzzy match score by 2x (so a maximum of 2) when the query is ...Sam McCall2018-06-061-0/+2
* Adjust symbol score based on crude symbol type.Sam McCall2018-06-061-0/+84
* [clangd] Fix inverted test again, sighSam McCall2018-06-051-1/+1
* [clangd] Quality fixes (uninit var, missing debug output, pattern decl CCRs).Sam McCall2018-06-051-2/+5
* [clangd] Boost code completion results that are narrowly scoped (local, members)Sam McCall2018-06-051-1/+48
* [clangd] Boost scores for decls from current file in completionIlya Biryukov2018-06-041-2/+26
* Silence a truncation warning; NFC.Aaron Ballman2018-05-181-1/+1
* [clangd] Extract scoring/ranking logic, and shave yaks.Sam McCall2018-05-151-0/+108