| Commit message (Expand) | Author | Age | Files | Lines |
* | Keep an explicit stack of function and block scopes, each element of | Douglas Gregor | 2010-03-01 | 1 | -2/+3 |
* | Add some spacing in the code-completion results for a return statement | Douglas Gregor | 2010-02-18 | 1 | -1/+3 |
* | Thread a source location into the template-argument deduction routines. There | John McCall | 2010-02-08 | 1 | -4/+7 |
* | Implement the lvalue-to-rvalue conversion where needed. The | Douglas Gregor | 2010-02-03 | 1 | -1/+1 |
* | Pass access specifiers around in overload resolution. | John McCall | 2010-01-26 | 1 | -1/+2 |
* | Teach code-completion to deal with calls to functions without prototypes. | Douglas Gregor | 2010-01-21 | 1 | -15/+21 |
* | Switch a few callers of MaybeAddResult over to AddResult, when the | Douglas Gregor | 2010-01-14 | 1 | -10/+12 |
* | Switch code-completion's ivar lookup over to LookupVisibleDecls, | Douglas Gregor | 2010-01-14 | 1 | -5/+11 |
* | Start migrating code-completion results from | Douglas Gregor | 2010-01-14 | 1 | -117/+129 |
* | Switch the remaining code completions over to LookupVisibleDecls, | Douglas Gregor | 2010-01-14 | 1 | -106/+15 |
* | Move code completion for qualified name lookup (foo::) to | Douglas Gregor | 2010-01-14 | 1 | -1/+2 |
* | Eliminate the code-completion-specifier CollectLookupResults in favor | Douglas Gregor | 2010-01-14 | 1 | -73/+10 |
* | Simplify the code-completion logic for nested-name-specifiers: rather | Douglas Gregor | 2010-01-14 | 1 | -31/+43 |
* | When providing completions for a member access expression in C++, | Douglas Gregor | 2010-01-14 | 1 | -8/+3 |
* | Switch code-completion for ordinary names over to the new(ish) | Douglas Gregor | 2010-01-14 | 1 | -4/+80 |
* | More refactoring of ResultBuilder::MaybeAddResult. No intended | Douglas Gregor | 2010-01-14 | 1 | -40/+39 |
* | Refactor the "is this declaration interesting" logic in | Douglas Gregor | 2010-01-14 | 1 | -33/+51 |
* | Banish the notion of a "rank" for code-completion results, since we | Douglas Gregor | 2010-01-13 | 1 | -256/+197 |
* | Improve the sorting of code-completion results. We now always sort by | Douglas Gregor | 2010-01-13 | 1 | -38/+41 |
* | Code-completion for @public, @protected, @private, @package. | Douglas Gregor | 2010-01-13 | 1 | -1/+30 |
* | Whenever completing ordinary names for an Objective-C source, also | Douglas Gregor | 2010-01-13 | 1 | -99/+159 |
* | Use horizontal-space markers in code-completion results rather than | Douglas Gregor | 2010-01-12 | 1 | -14/+21 |
* | Improve code completion by introducing patterns for the various C and | Douglas Gregor | 2010-01-10 | 1 | -20/+529 |
* | remove extraneous #include | Chris Lattner | 2009-12-30 | 1 | -1/+0 |
* | Typo correction for type names when they appear in declarations, e.g., given | Douglas Gregor | 2009-12-30 | 1 | -0/+1 |
* | Remove some dead variables clang-analyzer found. | Benjamin Kramer | 2009-12-25 | 1 | -1/+0 |
* | Objective-C methods can be variadic, too. Who knew. | Douglas Gregor | 2009-12-23 | 1 | -0/+7 |
* | Extend code-completion results with the type of each result | Douglas Gregor | 2009-12-18 | 1 | -0/+36 |
* | Shift things around so that it's easier to recover from a missing | John McCall | 2009-12-16 | 1 | -22/+13 |
* | update to match LLVM API change: | Chris Lattner | 2009-12-15 | 1 | -7/+0 |
* | Un-namespace-qualify llvm_unreachable. It's a macro, so the qualification gave | Jeffrey Yasskin | 2009-12-12 | 1 | -1/+1 |
* | When code completion of an overload set fails, produce results for ordinary n... | Douglas Gregor | 2009-12-11 | 1 | -5/+16 |
* | Add a function's cv-qualifiers to the code-completion results as an | Douglas Gregor | 2009-12-11 | 1 | -4/+24 |
* | Teach code completion to instantiate templates when it needs to | Douglas Gregor | 2009-12-11 | 1 | -1/+6 |
* | Member function templates can occur after . or -> | Douglas Gregor | 2009-12-11 | 1 | -1/+2 |
* | Tweak code-completion results by suppressing class template | Douglas Gregor | 2009-12-11 | 1 | -8/+15 |
* | Class template (partial) specializations should not show up in code completio... | Douglas Gregor | 2009-12-11 | 1 | -0/+5 |
* | When in an Objective-C instance method, super is a valid code-completion result | Douglas Gregor | 2009-12-07 | 1 | -0/+14 |
* | Code completion for Objective-C @ keywords that are statements or expressions | Douglas Gregor | 2009-12-07 | 1 | -1/+90 |
* | Code completion for Objective-C @ directives | Douglas Gregor | 2009-12-07 | 1 | -0/+88 |
* | PointerUnion == PointerUnion does not do what I thought it did. Also, fix a t... | Douglas Gregor | 2009-12-06 | 1 | -4/+4 |
* | Switch the std::multimap shadow map used in code completion to an | Douglas Gregor | 2009-12-06 | 1 | -16/+179 |
* | Avoid trashing two temporary strings. | Benjamin Kramer | 2009-12-05 | 1 | -2/+2 |
* | strcasecmp is unportable. | Benjamin Kramer | 2009-12-05 | 1 | -1/+1 |
* | Improve the performance of code completion by 2.2x when completing for ordina... | Douglas Gregor | 2009-12-05 | 1 | -6/+46 |
* | Switch the clang-to-CIndex interface for code-completion to a binary format, ... | Douglas Gregor | 2009-12-01 | 1 | -18/+19 |
* | Remove all of Sema's explicit uses of OverloadedFunctionDecl except for | John McCall | 2009-11-30 | 1 | -11/+0 |
* | Remove useless c_str() calls in SemaCodeComplete. | Benjamin Kramer | 2009-11-29 | 1 | -17/+17 |
* | Rip out TemplateIdRefExpr and make UnresolvedLookupExpr and | John McCall | 2009-11-24 | 1 | -2/+4 |
* | Encapsulate "an array of TemplateArgumentLocs and two angle bracket locations... | John McCall | 2009-11-23 | 1 | -6/+4 |