| Commit message (Expand) | Author | Age | Files | Lines |
| ... | |
| * | When performing completions involving Objective-C method declarations | Douglas Gregor | 2010-08-25 | 1 | -17/+32 |
| * | Give a slight preference to functions returning "void" when we're | Douglas Gregor | 2010-08-24 | 1 | -4/+13 |
| * | Implement code completion for preprocessor expressions and in macro | Douglas Gregor | 2010-08-24 | 1 | -4/+39 |
| * | Move some of SemaOverload's API to various places in Overload.h, and kill | John McCall | 2010-08-24 | 1 | -1/+2 |
| * | Implement preprocessor code completion where a macro name is expected, | Douglas Gregor | 2010-08-24 | 1 | -0/+24 |
| * | Introduce basic code-completion support for preprocessor directives, | Douglas Gregor | 2010-08-24 | 1 | -0/+180 |
| * | When providing completions for a function or method argument that | Douglas Gregor | 2010-08-24 | 1 | -11/+108 |
| * | More header elimination. The goal of all this is to allow Parser to | John McCall | 2010-08-24 | 1 | -0/+1 |
| * | Struggle mightily against header inclusion in Sema.h. | John McCall | 2010-08-24 | 1 | -0/+1 |
| * | OwningExprResult -> ExprResult. This patch brought to you by | John McCall | 2010-08-24 | 1 | -2/+2 |
| * | Abstract out passing around types and kill off ActionBase. | John McCall | 2010-08-24 | 1 | -5/+5 |
| * | State explicitly that we are intentionally not providing macro completions fo... | Douglas Gregor | 2010-08-24 | 1 | -0/+3 |
| * | Consistently switch on PCC_Type | Douglas Gregor | 2010-08-24 | 1 | -17/+22 |
| * | Provide code completion results for the context-sensitive Objective-C | Douglas Gregor | 2010-08-24 | 1 | -2/+55 |
| * | When calling a function or messaging a method marked "sentinel", add | Douglas Gregor | 2010-08-23 | 1 | -1/+20 |
| * | Include __FUNCTION__, __PRETTY_FUNCTION_, __func__ in code-completion | Douglas Gregor | 2010-08-23 | 1 | -0/+38 |
| * | Introduce a code-completion hook for the Objective-C collection | Douglas Gregor | 2010-08-23 | 1 | -10/+68 |
| * | Don't include macro results when we're completing a declarator. | Douglas Gregor | 2010-08-23 | 1 | -4/+0 |
| * | Introduce a new code-completion point when we're parsing a | Douglas Gregor | 2010-08-23 | 1 | -1/+40 |
| * | DeclPtrTy -> Decl * | John McCall | 2010-08-21 | 1 | -20/+19 |
| * | More PCH -> AST renaming. | Sebastian Redl | 2010-08-18 | 1 | -3/+3 |
| * | zap a big dead method. | Chris Lattner | 2010-08-18 | 1 | -51/+0 |
| * | When generating code completion patterns for method declarations, give | Douglas Gregor | 2010-08-17 | 1 | -1/+4 |
| * | 1 != I. Fix the formulation of code-completion patterns for | Douglas Gregor | 2010-08-17 | 1 | -1/+1 |
| * | Implement support for cached code completions for | Douglas Gregor | 2010-08-16 | 1 | -5/+7 |
| * | When caching global completion results, keep track of the simplified | Douglas Gregor | 2010-08-16 | 1 | -25/+20 |
| * | Extend the code-completion caching infrastructure to include global | Douglas Gregor | 2010-08-15 | 1 | -23/+34 |
| * | Implement caching of code-completion results for macro definitions | Douglas Gregor | 2010-08-13 | 1 | -0/+20 |
| * | Move Sema's headers into include/clang/Sema, renaming a few along the way. | Douglas Gregor | 2010-08-12 | 1 | -2/+2 |
| * | Once code completion has completed, pass a "completion context" on to | Douglas Gregor | 2010-08-11 | 1 | -97/+204 |
| * | Speculatively revert r110610 " Make ObjCInterfaceDecl redeclarable, | Douglas Gregor | 2010-08-11 | 1 | -17/+9 |
| * | - Make ObjCInterfaceDecl redeclarable, and create separate decl nodes for for... | Sebastian Redl | 2010-08-09 | 1 | -9/+17 |
| * | Add code-completion support directly to ASTUnit, which performs code | Douglas Gregor | 2010-08-04 | 1 | -3/+5 |
| * | Simplify global method pool implementation in Sema. No functionality change. | Sebastian Redl | 2010-08-02 | 1 | -31/+24 |
| * | When performing code completion for a case statement in a switch whose | Douglas Gregor | 2010-07-28 | 1 | -3/+23 |
| * | Only filter out names reserved for the implementation (e.g., __blah or | Douglas Gregor | 2010-07-14 | 1 | -2/+5 |
| * | When forming a function call or message send expression, be sure to | Douglas Gregor | 2010-07-13 | 1 | -3/+3 |
| * | Support code completion for parameter names in Objective-C method | Douglas Gregor | 2010-07-08 | 1 | -0/+15 |
| * | Introduce a new code-completion point prior to an identifier in the | Douglas Gregor | 2010-07-08 | 1 | -132/+195 |
| * | During code completion, give the "nil" and "NULL" macros the same | Douglas Gregor | 2010-07-08 | 1 | -4/+22 |
| * | Patch to provide separate ASTs for multiple ObjC class extension | Fariborz Jahanian | 2010-06-22 | 1 | -7/+4 |
| * | Remove a completely useless and utterly incorrect assertion. | Douglas Gregor | 2010-06-15 | 1 | -2/+0 |
| * | Teach code completion not to ignore data members when performing code | Douglas Gregor | 2010-06-15 | 1 | -2/+2 |
| * | Alter the ExternalASTSource interface to permit by-name lookups. PCH continu... | John McCall | 2010-06-01 | 1 | -6/+6 |
| * | Fix crash in code completion when an ObjCMethodDecl doesn't have an associate... | Ted Kremenek | 2010-05-31 | 1 | -4/+7 |
| * | Teach code-completion for calls to be more careful with a | Douglas Gregor | 2010-05-30 | 1 | -2/+14 |
| * | Teach code completion to adjust its completion priorities based on the | Douglas Gregor | 2010-05-30 | 1 | -30/+238 |
| * | Don't put method bodies into code completions unless code patterns are | Douglas Gregor | 2010-05-28 | 1 | -1/+1 |
| * | Do not produce types as valid code completions when we're in an | Douglas Gregor | 2010-05-28 | 1 | -3/+57 |
| * | Make -code-completion-patterns only cover multi-line code | Douglas Gregor | 2010-05-28 | 1 | -241/+247 |