summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeCompletion/ordinary-name.c
Commit message (Collapse)AuthorAgeFilesLines
* [CodeCompletion] Allow system headers providing private symbols with a ↵Argyrios Kyrtzidis2016-07-011-1/+2
| | | | | | | | single underscore. rdar://24677150 llvm-svn: 274314
* Don't crash when code-completing after "#include <". It would be farDouglas Gregor2010-12-091-0/+3
| | | | | | | better to actually produce a decent set of completions by checking the system include paths, but not today. Fixes PR8744. llvm-svn: 121431
* Only filter out names reserved for the implementation (e.g., __blah orDouglas Gregor2010-07-141-4/+8
| | | | | | | _Foo) from code-completion results when they come from a system header. llvm-svn: 108338
* Improve the sorting of code-completion results. We now always sort byDouglas Gregor2010-01-131-4/+3
| | | | | | | | the "typed" text, first, then take into account nested-name-specifiers, name hiding, etc. This means that the resulting sort is actually alphabetical :) llvm-svn: 93370
* Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.Daniel Dunbar2009-12-151-1/+1
| | | | | | | | | - This is designed to make it obvious that %clang_cc1 is a "test variable" which is substituted. It is '%clang_cc1' instead of '%clang -cc1' because it can be useful to redefine what gets run as 'clang -cc1' (for example, to set a default target). llvm-svn: 91446
* Remove RUN: true lines.Daniel Dunbar2009-11-081-1/+0
| | | | llvm-svn: 86432
* Eliminate &&s in tests.Daniel Dunbar2009-11-081-1/+1
| | | | | | - 'for i in $(find . -type f); do sed -e 's#\(RUN:.*[^ ]\) *&& *$#\1#g' $i | FileUpdate $i; done', for the curious. llvm-svn: 86430
* Determinism is for wimps. <Wimper>Douglas Gregor2009-09-281-4/+4
| | | | llvm-svn: 82962
* Clean up the CodeCompletion testsuite's use of FileCheckDouglas Gregor2009-09-241-3/+4
| | | | llvm-svn: 82726
* Replace the -code-completion-dump option with Douglas Gregor2009-09-221-3/+2
| | | | | | | | | | | -code-completion-at=filename:line:column which performs code completion at the specified location by truncating the file at that position and enabling code completion. This approach makes it possible to run multiple tests from a single test file, and gives a more natural command-line interface. llvm-svn: 82571
* Code completion for ordinary names when we're starting a declaration, ↵Douglas Gregor2009-09-211-0/+12
expression, or statement llvm-svn: 82481
OpenPOWER on IntegriCloud