summaryrefslogtreecommitdiffstats
path: root/clang/test/Index/complete-stmt.c
Commit message (Collapse)AuthorAgeFilesLines
* [CodeComplete] Include more text into typed chunks of pattern completionsIlya Biryukov2019-06-041-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | Summary: To allow filtering on any of the words in the editors. In particular, the following completions were changed: - 'using namespace <#name#>' Typed text before: 'using', after: 'using namespace'. - 'else if (#<condition#>)' Before: 'else', after: 'else if'. - 'using typename <#qualifier#>::<#name#>' Before: 'using', after: 'using typename'. Reviewers: sammccall Reviewed By: sammccall Subscribers: cfe-commits Tags: #clang Differential Revision: https://reviews.llvm.org/D62615 llvm-svn: 362479
* Replace __double_underscored type nullability qualifiers with ↵Douglas Gregor2015-06-241-2/+2
| | | | | | | | | | | | | | | | _Uppercase_underscored Addresses a conflict with glibc's __nonnull macro by renaming the type nullability qualifiers as follows: __nonnull -> _Nonnull __nullable -> _Nullable __null_unspecified -> _Null_unspecified This is the major part of rdar://problem/21530726, but does not yet provide the Darwin-specific behavior for the old names. llvm-svn: 240596
* Code completion for nullability type specifiers.Douglas Gregor2015-06-191-0/+2
| | | | | | Another part of rdar://problem/18868820. llvm-svn: 240159
* When code completing in a statement, parenthesized expression, orDouglas Gregor2013-01-311-1/+10
| | | | | | | | Objective-C message receiver, the user is as likely to want to write a type name as any other declaration, so give types the same priority as other declarations. Fixes <rdar://problem/12480600>. llvm-svn: 174038
* If code completion patterns are not enabled, use simpler else/else ifDouglas Gregor2012-02-161-1/+5
| | | | | | completions that don't insert braces. Fixes <rdar://problem/10764168>. llvm-svn: 150707
* Add code completion to produce "else" blocks after an "if"Douglas Gregor2011-07-301-0/+12
statement. Fixes <rdar://problem/9229438>. llvm-svn: 136564
OpenPOWER on IntegriCloud